API Reference
Class
ExcelTableInfo
Represents a table defined in an Excel workbook.
Inheritance
- Object
- ExcelTableInfo
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
- Method ExcelDocument.GetTables
- Method ExcelDocumentReader.GetTable
- Method ExcelDocumentReader.GetTables
Constructors
public ExcelTableInfo(String name, String range, String sheetName, Int32 sheetIndex) #Initializes a new instance of the ExcelTableInfo class.
Parameters
- name System.String
- Table name (or display name).
- range System.String
- Table range in A1 notation.
- sheetName System.String
- Sheet name containing the table.
- sheetIndex System.Int32
- 0-based sheet index; -1 when unknown.
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
public String SheetName { get; } #Sheet name containing the table.
public Int32 SheetIndex { get; } #0-based sheet index; -1 when unknown.
public String StyleName { get; } #Table style name, when present.
public Boolean HasHeaderRow { get; } #Whether the table has a header row.
public Boolean TotalsRowShown { get; } #Whether the table shows a totals row.
public Boolean HasAutoFilter { get; } #Whether the table has a table-scoped AutoFilter.
public IReadOnlyList<ExcelTableColumnInfo> Columns { get; } #Table columns in display order.