Trait rich_sdl2_ttf_rust::font::StyleExt[][src]

pub trait StyleExt {
    fn font_style(&self) -> FontStyle;
fn set_font_style(&self, style: FontStyle);
fn outline_width(&self) -> u32;
fn set_outline_width(&self, pixels: u32);
fn set_font_size(&self, points: u32) -> Result<()>;
fn set_font_size_dpi(&self, points: u32, dpi: Dpi) -> Result<()>; }
Expand description

An extension of FontStyle and outline width getters/setters.

Required methods

Returns the current font style.

Sets the font style.

Returns the current outline width in pixels.

Sets the outline width in pixels.

Sets the font size in points, or Err on failure.

Sets the font size in points and dpi, or Err on failure.

Implementors