TXLSXTables is the structured-table collection exposed by TXLSXWorksheet.Tables and each TXLSXTable represents one Excel table definition
Declarations
function Add: TXLSXTable; overload;
function Add(const AName, ARange: WideString; AColumns: TStrings): Integer; overload;
function FindByName(const AName: WideString): TXLSXTable;
function DeleteByName(const AName: WideString): Boolean;
property TXLSXTable.Name, DisplayName, Range: WideString;
property TXLSXTable.Columns: TStringList;
property TXLSXTable.StyleName: WideString;
property TXLSXTable.ShowFirstColumn, ShowLastColumn, ShowRowStripes, ShowColumnStripes, TotalsRowShown: Boolean;
Table members
| Name and DisplayName | Internal identifier and the table name shown to users |
| Range | Worksheet range in A1 notation |
| Columns | Ordered header names used to write table-column metadata |
| ColumnIds | Stable positive OOXML table-column identifiers |
| ColumnTotalsRowFunctions and ColumnTotalsRowLabels | Per-column totals row configuration |
| ColumnCalculatedColumnFormulas and ColumnTotalsRowFormulas | Per-column structured-table formulas |
| AutoFilterRange, AutoFilterColumns and SortStateXml | Table filter and sort metadata |
Exemple
var Columns: TStringList;
begin
Columns := TStringList.Create;
try
Columns.Add('Product');
Columns.Add('Amount');
Sheet.Tables.Add('SalesTable', 'A1:B25', Columns);
Sheet.Tables.FindByName('SalesTable').ShowRowStripes := True;
finally Columns.Free end;
end;Voir aussi