[]
Represents a recognized table.
public interface ITable
Gets the list of table cells.
IReadOnlyList<ITableCell> Cells { get; }
Gets the list of table columns.
IReadOnlyList<ITableCol> Cols { get; }
Gets the list of table rows.
IReadOnlyList<ITableRow> Rows { get; }
Returns the bounds of the table on the page.
Quadrilateral GetBounds()
The table bounds.
Gets the cell at a specified position.
ITableCell GetCell(int row, int col)
row
intThe row index.
col
intThe column index.
The ITableCell at the specified position.