pub enum ParaLineSpacing {
Single,
OneAndHalf,
Double,
SingleOr(i32),
Exact(i32),
Exact20(i32),
}
Expand description
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§
Source§impl Clone for ParaLineSpacing
impl Clone for ParaLineSpacing
Source§fn clone(&self) -> ParaLineSpacing
fn clone(&self) -> ParaLineSpacing
Returns a duplicate 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 ParaLineSpacing
impl Debug for ParaLineSpacing
impl Copy for ParaLineSpacing
Auto Trait Implementations§
impl Freeze for ParaLineSpacing
impl RefUnwindSafe for ParaLineSpacing
impl Send for ParaLineSpacing
impl Sync for ParaLineSpacing
impl Unpin for ParaLineSpacing
impl UnwindSafe for ParaLineSpacing
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