pub trait TextParagraphExt {
// Required methods
fn runs(&self) -> Vec<&TextRun>;
fn text(&self) -> String;
fn level(&self) -> Option<i32>;
fn alignment(&self) -> Option<STTextAlignType>;
}Expand description
Extension trait for TextParagraph providing convenience methods.
Required Methods§
Sourcefn alignment(&self) -> Option<STTextAlignType>
fn alignment(&self) -> Option<STTextAlignType>
Get the text alignment.
Implementors§
impl TextParagraphExt for TextParagraph
Available on crate feature
dml-text only.