[][src]Trait spreadsheet_ods::style::AttrTableCell

pub trait AttrTableCell where
    Self: AttrMap
{ fn set_wrap_option(&mut self, wrap: WrapOption) { ... }
fn set_print_content(&mut self, print: bool) { ... }
fn set_repeat_content(&mut self, print: bool) { ... }
fn set_rotation_align(&mut self, align: RotationAlign) { ... }
fn set_rotation_angle(&mut self, angle: Angle) { ... }
fn set_shrink_to_fit(&mut self, shrink: bool) { ... }
fn set_vertical_align(&mut self, align: CellAlignVertical) { ... }
fn set_diagonal_bl_tr(
        &mut self,
        width: Length,
        border: Border,
        color: Rgb<u8>
    ) { ... }
fn set_diagonal_bl_tr_widths(
        &mut self,
        inner: Length,
        spacing: Length,
        outer: Length
    ) { ... }
fn set_diagonal_tl_br(
        &mut self,
        width: Length,
        border: Border,
        color: Rgb<u8>
    ) { ... }
fn set_diagonal_tl_br_widths(
        &mut self,
        inner: Length,
        spacing: Length,
        outer: Length
    ) { ... } }

Table cell specific styles.

Provided methods

fn set_wrap_option(&mut self, wrap: WrapOption)

fn set_print_content(&mut self, print: bool)

fn set_repeat_content(&mut self, print: bool)

fn set_rotation_align(&mut self, align: RotationAlign)

fn set_rotation_angle(&mut self, angle: Angle)

fn set_shrink_to_fit(&mut self, shrink: bool)

fn set_vertical_align(&mut self, align: CellAlignVertical)

fn set_diagonal_bl_tr(&mut self, width: Length, border: Border, color: Rgb<u8>)

Diagonal style.

fn set_diagonal_bl_tr_widths(
    &mut self,
    inner: Length,
    spacing: Length,
    outer: Length
)

Widths for double borders.

fn set_diagonal_tl_br(&mut self, width: Length, border: Border, color: Rgb<u8>)

Diagonal style.

fn set_diagonal_tl_br_widths(
    &mut self,
    inner: Length,
    spacing: Length,
    outer: Length
)

Widths for double borders.

Loading content...

Implementors

impl AttrTableCell for TableCellAttr[src]

Loading content...