[−][src]Struct sciter::graphics::TextMetrics
Metrics of a text layout object.
Fields
min_width: DimMinimum width, is a width of the widest word (non-breakable sequence) in the text.
max_width: DimMaximum width, is the width of the text without wrapping.
If the text contains new line sequences then function returns width of widest string.
height: DimComputed height of the Text object and box height.
ascent: Dimdescent: Dimlines: u32Mumber of lines in text layout.
To get meaningful values you should set width of the text layout object
(with Text.set_box, for example).
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TextMetrics
impl Send for TextMetrics
impl Sync for TextMetrics
impl Unpin for TextMetrics
impl UnwindSafe for TextMetrics
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,