pub trait TableRowExt {
// Required methods
fn cells(&self) -> &[CTTableCell];
fn cell(&self, col: usize) -> Option<&CTTableCell>;
fn height_emu(&self) -> Option<i64>;
}Expand description
Extension trait for CTTableRow providing convenience methods.
Required Methods§
Sourcefn cells(&self) -> &[CTTableCell]
fn cells(&self) -> &[CTTableCell]
Get all cells in this row.
Sourcefn cell(&self, col: usize) -> Option<&CTTableCell>
fn cell(&self, col: usize) -> Option<&CTTableCell>
Get a cell by column index (0-based).
Sourcefn height_emu(&self) -> Option<i64>
fn height_emu(&self) -> Option<i64>
Get the row height in EMUs (if specified).
Implementors§
impl TableRowExt for CTTableRow
Available on crate feature
dml-tables only.