API Reference
Class
ExcelExtractTable
Minimal table model for ingestion (columns + rows of strings).
Inheritance
- Object
- ExcelExtractTable
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Property ExcelExtractChunk.Tables
Constructors
public ExcelExtractTable() #Inherited Methods
Properties
public String Title { get; set; } #Optional table title/label.
public IReadOnlyList<String> Columns { get; set; } #Column headers.
public IReadOnlyList<IReadOnlyList<String>> Rows { get; set; } #Table rows, aligned with Columns.
public Int32 TotalRowCount { get; set; } #Total row count before any truncation.
public Boolean Truncated { get; set; } #True when Rows was truncated compared to TotalRowCount.