Struct egui::TextFormat
source · pub struct TextFormat {
pub font_id: FontId,
pub extra_letter_spacing: f32,
pub line_height: Option<f32>,
pub color: Color32,
pub background: Color32,
pub italics: bool,
pub underline: Stroke,
pub strikethrough: Stroke,
pub valign: Align,
}
Expand description
Formatting option for a section of text.
Fields§
§font_id: FontId
§extra_letter_spacing: f32
Extra spacing between letters, in points.
Default: 0.0.
For even text it is recommended you round this to an even number of pixels.
line_height: Option<f32>
Explicit line height of the text in points.
This is the distance between the bottom row of two subsequent lines of text.
If None
(the default), the line height is determined by the font.
For even text it is recommended you round this to an even number of pixels.
color: Color32
Text color
background: Color32
§italics: bool
§underline: Stroke
§strikethrough: Stroke
§valign: Align
If you use a small font and Align::TOP
you
can get the effect of raised text.
If you use a small font and Align::BOTTOM
you get the effect of a subscript.
If you use Align::Center
, you get text that is centered
around a common center-line, which is nice when mixining emojis
and normal text in e.g. a button.
Implementations§
source§impl TextFormat
impl TextFormat
pub fn simple(font_id: FontId, color: Color32) -> TextFormat
Trait Implementations§
source§impl Clone for TextFormat
impl Clone for TextFormat
source§fn clone(&self) -> TextFormat
fn clone(&self) -> TextFormat
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TextFormat
impl Debug for TextFormat
source§impl Default for TextFormat
impl Default for TextFormat
source§fn default() -> TextFormat
fn default() -> TextFormat
Returns the “default value” for a type. Read more
source§impl Hash for TextFormat
impl Hash for TextFormat
source§impl PartialEq for TextFormat
impl PartialEq for TextFormat
impl StructuralPartialEq for TextFormat
Auto Trait Implementations§
impl Freeze for TextFormat
impl RefUnwindSafe for TextFormat
impl Send for TextFormat
impl Sync for TextFormat
impl Unpin for TextFormat
impl UnwindSafe for TextFormat
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)