pub struct CT_Table {
pub properties: Option<CT_TableProperties>,
pub grid: CT_TableGrid,
pub rows: Vec<CT_TableRow>,
/* private fields */
}Expand description
One DrawingML a:tbl with typed grid, rows, cells, and banding properties.
Fields§
§properties: Option<CT_TableProperties>§grid: CT_TableGrid§rows: Vec<CT_TableRow>Implementations§
Source§impl CT_Table
impl CT_Table
Sourcepub fn new(rows: usize, columns: usize, width: Emu, height: Emu) -> Result<Self>
pub fn new(rows: usize, columns: usize, width: Emu, height: Emu) -> Result<Self>
Creates a rectangular table using truncating quotients and assigns each remainder to the final column or row.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CT_Table
impl RefUnwindSafe for CT_Table
impl Send for CT_Table
impl Sync for CT_Table
impl Unpin for CT_Table
impl UnsafeUnpin for CT_Table
impl UnwindSafe for CT_Table
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