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).
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl TableRowExt for CTTableRow
Available on crate feature
dml-tables only.