[][src]Enum native_windows_gui::ParaLineSpacing

pub enum ParaLineSpacing {
    Single,
    OneAndHalf,
    Double,
    SingleOr(i32),
    Exact(i32),
    Exact20(i32),
}

Type of line spacing

Variants

Single

Single spacing.

OneAndHalf

One-and-a-half spacing.

Double

Double spacing.

SingleOr(i32)

Value in twips (twentieth of a point). If the value specifies a value that is less than single spacing, the control displays single-spaced text

Exact(i32)

Value in twips (twentieth of a point). The control uses the exact spacing specified, even if dyLineSpacing specifies a value that is less than single spacing.

Exact20(i32)

The value of value / 20 is the spacing, in lines, from one line to the next. 20 produces single-spaced text, 40 is double spaced, 60 is triple spaced, and so on.

Trait Implementations

impl Clone for ParaLineSpacing[src]

impl Copy for ParaLineSpacing[src]

impl Debug for ParaLineSpacing[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.