Class TableData
Holds all table cell data and dimensions. Follows the docling TableData convention.
public class TableData
- Inheritance
-
TableData
- Inherited Members
Properties
NumCols
Total number of columns.
public int NumCols { get; set; }
Property Value
NumRows
Total number of rows.
public int NumRows { get; set; }
Property Value
TableCells
Flat list of all table cells.
public List<TableCell> TableCells { get; set; }
Property Value
Methods
BuildGrid()
Builds a 2D grid from the flat cell list. Each grid position references the cell that covers it.
public TableCell?[,] BuildGrid()
Returns
- TableCell[,]