Class TableCell<T>
Represents a single cell in a table.
public class TableCell<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
TableCell<T>
- Inherited Members
Properties
BoundingBox
Gets the bounding box of the cell.
public Vector<T> BoundingBox { get; init; }
Property Value
- Vector<T>
ColSpan
Gets the column span (number of columns this cell covers).
public int ColSpan { get; init; }
Property Value
Column
Gets the column index (0-based).
public int Column { get; init; }
Property Value
Confidence
Gets the confidence for this cell's detection.
public T Confidence { get; init; }
Property Value
- T
IsHeader
Gets whether this is a header cell.
public bool IsHeader { get; init; }
Property Value
Row
Gets the row index (0-based).
public int Row { get; init; }
Property Value
RowSpan
Gets the row span (number of rows this cell covers).
public int RowSpan { get; init; }
Property Value
Text
Gets the text content of the cell.
public string Text { get; init; }