Table of Contents

Class TableData

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

Holds all table cell data and dimensions. Follows the docling TableData convention.

public class TableData
Inheritance
TableData
Inherited Members

Properties

NumCols

Total number of columns.

public int NumCols { get; set; }

Property Value

int

NumRows

Total number of rows.

public int NumRows { get; set; }

Property Value

int

TableCells

Flat list of all table cells.

public List<TableCell> TableCells { get; set; }

Property Value

List<TableCell>

Methods

BuildGrid()

Builds a 2D grid from the flat cell list. Each grid position references the cell that covers it.

public TableCell?[,] BuildGrid()

Returns

TableCell[,]