pub struct ParagraphProperties { /* private fields */ }Implementations§
Source§impl ParagraphProperties
impl ParagraphProperties
pub fn right_to_left(&self) -> Option<&str>
pub fn get_right_to_left(&self) -> Option<&str>
👎Deprecated since 3.0.0:
Use right_to_left()
pub fn set_right_to_left<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn alignment(&self) -> &TextAlignmentTypeValues
pub fn get_alignment(&self) -> &TextAlignmentTypeValues
👎Deprecated since 3.0.0:
Use alignment()
pub fn set_alignment(&mut self, value: TextAlignmentTypeValues) -> &mut Self
pub fn default_run_properties(&self) -> Option<&RunProperties>
pub fn get_default_run_properties(&self) -> Option<&RunProperties>
👎Deprecated since 3.0.0:
Use default_run_properties()
pub fn default_run_properties_mut(&mut self) -> Option<&mut RunProperties>
pub fn get_default_run_properties_mut(&mut self) -> Option<&mut RunProperties>
👎Deprecated since 3.0.0:
Use default_run_properties_mut()
pub fn set_default_run_properties(&mut self, value: RunProperties) -> &mut Self
pub fn line_spacing(&self) -> Option<&LineSpacing>
pub fn get_line_spacing(&self) -> Option<&LineSpacing>
👎Deprecated since 3.0.0:
Use line_spacing()
pub fn line_spacing_mut(&mut self) -> Option<&mut LineSpacing>
pub fn get_line_spacing_mut(&mut self) -> Option<&mut LineSpacing>
👎Deprecated since 3.0.0:
Use line_spacing_mut()
pub fn set_line_spacing(&mut self, value: LineSpacing) -> &mut Self
Trait Implementations§
Source§impl Clone for ParagraphProperties
impl Clone for ParagraphProperties
Source§fn clone(&self) -> ParagraphProperties
fn clone(&self) -> ParagraphProperties
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParagraphProperties
impl Debug for ParagraphProperties
Source§impl Default for ParagraphProperties
impl Default for ParagraphProperties
Source§fn default() -> ParagraphProperties
fn default() -> ParagraphProperties
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParagraphProperties
impl RefUnwindSafe for ParagraphProperties
impl Send for ParagraphProperties
impl Sync for ParagraphProperties
impl Unpin for ParagraphProperties
impl UnsafeUnpin for ParagraphProperties
impl UnwindSafe for ParagraphProperties
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