Table of Contents

Class TableCell

Namespace
Mythosia.Documents.Elements
Assembly
Mythosia.Documents.Abstractions.dll

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

int

ColumnHeader

Whether this cell is a column header.

public bool ColumnHeader { get; set; }

Property Value

bool

EndColOffsetIdx

0-based end column index (exclusive).

public int EndColOffsetIdx { get; set; }

Property Value

int

EndRowOffsetIdx

0-based end row index (exclusive).

public int EndRowOffsetIdx { get; set; }

Property Value

int

RowHeader

Whether this cell is a row header.

public bool RowHeader { get; set; }

Property Value

bool

RowSection

Whether this cell is a row section header.

public bool RowSection { get; set; }

Property Value

bool

RowSpan

Number of rows this cell spans.

public int RowSpan { get; set; }

Property Value

int

StartColOffsetIdx

0-based start column index (inclusive).

public int StartColOffsetIdx { get; set; }

Property Value

int

StartRowOffsetIdx

0-based start row index (inclusive).

public int StartRowOffsetIdx { get; set; }

Property Value

int

Text

Text content of the cell.

public string Text { get; set; }

Property Value

string