pub struct RunProperties { /* private fields */ }Implementations§
Source§impl RunProperties
impl RunProperties
pub fn text(&self) -> &str
pub fn get_text(&self) -> &str
👎Deprecated since 3.0.0:
Use text()
pub fn set_text<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn kumimoji(&self) -> &str
pub fn get_kumimoji(&self) -> &str
👎Deprecated since 3.0.0:
Use kumimoji()
pub fn set_kumimoji<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn language(&self) -> &str
pub fn get_language(&self) -> &str
👎Deprecated since 3.0.0:
Use language()
pub fn set_language<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn alternative_language(&self) -> &str
pub fn get_alternative_language(&self) -> &str
👎Deprecated since 3.0.0:
Use alternative_language()
pub fn set_alternative_language<S: Into<String>>( &mut self, value: S, ) -> &mut Self
pub fn bold(&self) -> &str
pub fn get_bold(&self) -> &str
👎Deprecated since 3.0.0:
Use bold()
pub fn set_bold<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn sz(&self) -> &str
pub fn get_sz(&self) -> &str
👎Deprecated since 3.0.0:
Use sz()
pub fn set_sz<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn italic(&self) -> &str
pub fn get_italic(&self) -> &str
👎Deprecated since 3.0.0:
Use italic()
pub fn set_italic<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn capital(&self) -> &TextCapsValues
pub fn get_capital(&self) -> &TextCapsValues
👎Deprecated since 3.0.0:
Use capital()
pub fn set_capital(&mut self, value: TextCapsValues) -> &mut Self
pub fn spacing(&self) -> i32
pub fn get_spacing(&self) -> i32
👎Deprecated since 3.0.0:
Use spacing()
pub fn set_spacing(&mut self, value: i32) -> &mut Self
pub fn strike(&self) -> &str
pub fn get_strike(&self) -> &str
👎Deprecated since 3.0.0:
Use strike()
pub fn set_strike<S: Into<String>>(&mut self, value: S) -> &mut Self
pub fn solid_fill(&self) -> Option<&SolidFill>
pub fn get_solid_fill(&self) -> Option<&SolidFill>
👎Deprecated since 3.0.0:
Use solid_fill()
pub fn solid_fill_mut(&mut self) -> Option<&mut SolidFill>
pub fn get_solid_fill_mut(&mut self) -> Option<&mut SolidFill>
👎Deprecated since 3.0.0:
Use solid_fill_mut()
pub fn set_solid_fill(&mut self, value: SolidFill) -> &mut Self
pub fn outline(&self) -> Option<&Outline>
pub fn get_outline(&self) -> Option<&Outline>
👎Deprecated since 3.0.0:
Use outline()
pub fn outline_mut(&mut self) -> Option<&mut Outline>
pub fn get_outline_mut(&mut self) -> Option<&mut Outline>
👎Deprecated since 3.0.0:
Use outline_mut()
pub fn set_outline(&mut self, value: Outline) -> &mut Self
pub fn latin_font(&self) -> Option<&TextFontType>
pub fn get_latin_font(&self) -> Option<&TextFontType>
👎Deprecated since 3.0.0:
Use latin_font()
pub fn latin_font_mut(&mut self) -> Option<&mut TextFontType>
pub fn get_latin_font_mut(&mut self) -> Option<&mut TextFontType>
👎Deprecated since 3.0.0:
Use latin_font_mut()
pub fn set_latin_font(&mut self, value: TextFontType) -> &mut Self
pub fn east_asian_font(&self) -> Option<&TextFontType>
pub fn get_east_asian_font(&self) -> Option<&TextFontType>
👎Deprecated since 3.0.0:
Use east_asian_font()
pub fn east_asian_font_mut(&mut self) -> Option<&mut TextFontType>
pub fn get_east_asian_font_mut(&mut self) -> Option<&mut TextFontType>
👎Deprecated since 3.0.0:
Use east_asian_font_mut()
pub fn set_east_asian_font(&mut self, value: TextFontType) -> &mut Self
pub fn complex_script_font(&self) -> Option<&TextFontType>
pub fn get_complex_script_font(&self) -> Option<&TextFontType>
👎Deprecated since 3.0.0:
Use complex_script_font()
pub fn complex_script_font_mut(&mut self) -> Option<&mut TextFontType>
pub fn get_complex_script_font_mut(&mut self) -> Option<&mut TextFontType>
👎Deprecated since 3.0.0:
Use complex_script_font_mut()
pub fn set_complex_script_font(&mut self, value: TextFontType) -> &mut Self
pub fn gradient_fill(&self) -> Option<&GradientFill>
pub fn get_gradient_fill(&self) -> Option<&GradientFill>
👎Deprecated since 3.0.0:
Use gradient_fill()
pub fn gradient_fill_mut(&mut self) -> Option<&mut GradientFill>
pub fn get_gradient_fill_mut(&mut self) -> Option<&mut GradientFill>
👎Deprecated since 3.0.0:
Use gradient_fill_mut()
pub fn set_gradient_fill(&mut self, value: GradientFill) -> &mut Self
pub fn no_fill(&self) -> Option<&NoFill>
pub fn get_no_fill(&self) -> Option<&NoFill>
👎Deprecated since 3.0.0:
Use no_fill()
pub fn no_fill_mut(&mut self) -> Option<&mut NoFill>
pub fn get_no_fill_mut(&mut self) -> Option<&mut NoFill>
👎Deprecated since 3.0.0:
Use no_fill_mut()
pub fn set_no_fill(&mut self, value: NoFill) -> &mut Self
pub fn effect_list(&self) -> Option<&EffectList>
pub fn get_effect_list(&self) -> Option<&EffectList>
👎Deprecated since 3.0.0:
Use effect_list()
pub fn effect_list_mut(&mut self) -> Option<&mut EffectList>
pub fn get_effect_list_mut(&mut self) -> Option<&mut EffectList>
👎Deprecated since 3.0.0:
Use effect_list_mut()
pub fn set_effect_list(&mut self, value: EffectList) -> &mut Self
Trait Implementations§
Source§impl Clone for RunProperties
impl Clone for RunProperties
Source§fn clone(&self) -> RunProperties
fn clone(&self) -> RunProperties
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 RunProperties
impl Debug for RunProperties
Source§impl Default for RunProperties
impl Default for RunProperties
Source§fn default() -> RunProperties
fn default() -> RunProperties
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RunProperties
impl RefUnwindSafe for RunProperties
impl Send for RunProperties
impl Sync for RunProperties
impl Unpin for RunProperties
impl UnsafeUnpin for RunProperties
impl UnwindSafe for RunProperties
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