Class TableCell
Represents a single cell in a table. Follows the docling TableCell convention with span and offset information.
public class TableCell
- Inheritance
-
TableCell
- Inherited Members
Properties
ColSpan
Number of columns this cell spans.
public int ColSpan { get; set; }
Property Value
ColumnHeader
Whether this cell is a column header.
public bool ColumnHeader { get; set; }
Property Value
EndColOffsetIdx
0-based end column index (exclusive).
public int EndColOffsetIdx { get; set; }
Property Value
EndRowOffsetIdx
0-based end row index (exclusive).
public int EndRowOffsetIdx { get; set; }
Property Value
RowHeader
Whether this cell is a row header.
public bool RowHeader { get; set; }
Property Value
RowSection
Whether this cell is a row section header.
public bool RowSection { get; set; }
Property Value
RowSpan
Number of rows this cell spans.
public int RowSpan { get; set; }
Property Value
StartColOffsetIdx
0-based start column index (inclusive).
public int StartColOffsetIdx { get; set; }
Property Value
StartRowOffsetIdx
0-based start row index (inclusive).
public int StartRowOffsetIdx { get; set; }
Property Value
Text
Text content of the cell.
public string Text { get; set; }