API Reference
Class
OdtTable
An XML-backed ODT table.
Inheritance
- Object
- OdtTable
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Property OdtContentBlock.Table
- Method OdtDocument.AddTable
- Property OdtDocument.Tables
Methods
public OdtTableRow AddRow(Nullable<Int32> columns = null) #Returns:
OdtTableRowAdds a row with the inferred or supplied column count.
Parameters
- columns System.Nullable{System.Int32} = null
public OdtTableCell Cell(Int32 row, Int32 column) #Returns:
OdtTableCellGets a zero-based cell.
Parameters
- row System.Int32
- column System.Int32
public OdtTableCell Merge(Int32 row, Int32 column, Int32 rowSpan, Int32 columnSpan) #Returns:
OdtTableCellMerges a rectangular range and emits covered cells for non-anchor positions.
Parameters
- row System.Int32
- column System.Int32
- rowSpan System.Int32
- columnSpan System.Int32
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
public IReadOnlyList<OdtTableRow> Rows { get; } #Rows in source order.