Struct egui::text::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.
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
source§fn eq(&self, other: &TextFormat) -> bool
fn eq(&self, other: &TextFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TextFormat
Auto Trait Implementations§
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