pub enum TextFlow {
Linear,
Path(Rc<TextPath>),
}
Expand description
A text chunk flow property.
Variants§
Linear
A linear layout.
Includes left-to-right, right-to-left and top-to-bottom.
Path(Rc<TextPath>)
A text-on-path layout.
pub enum TextFlow {
Linear,
Path(Rc<TextPath>),
}
A text chunk flow property.
A linear layout.
Includes left-to-right, right-to-left and top-to-bottom.
A text-on-path layout.