API Reference
Class
ExcelExtractTable
Minimal table model for ingestion (columns + rows of strings).
Inheritance
- Object
- ExcelExtractTable
Constructors
public ExcelExtractTable() #Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
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.