[]
Represents a cell in an ITable.
public interface ITableCell
Gets the 0-based index of the table column containing the current cell.
int Col { get; }
Gets the 0-based index of the table row containing the current cell.
int Row { get; }
Gets the number of columns spanned by the current cell.
int SpanCols { get; }
Gets the number of rows spanned by the current cell.
int SpanRows { get; }
Gets the cell text.
string Text { get; }
Returns the bounds of the cell on the page.
Quadrilateral GetBounds()
The cell bounds.