Table of Contents

Class TableCell<T>

Namespace
AiDotNet.Document
Assembly
AiDotNet.dll

Represents a single cell in a table.

public class TableCell<T>

Type Parameters

T

The 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

int

Column

Gets the column index (0-based).

public int Column { get; init; }

Property Value

int

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

bool

Row

Gets the row index (0-based).

public int Row { get; init; }

Property Value

int

RowSpan

Gets the row span (number of rows this cell covers).

public int RowSpan { get; init; }

Property Value

int

Text

Gets the text content of the cell.

public string Text { get; init; }

Property Value

string