HotXLS BelgeleriİçindekilerXLSX FacadeAna sayfaİçindekilerTXLSXWorksheet

TXLSXTable and TXLSXTables classes

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 üyeleri

Name and DisplayNameInternal identifier and the table name shown to usersRangeWorksheet range in A1 notationColumnsOrdered header names used to write table-column metadataColumnIdsStable positive OOXML table-column identifiersColumnTotalsRowFunctions and ColumnTotalsRowLabelsPer-column totals row configurationColumnCalculatedColumnFormulas and ColumnTotalsRowFormulasPer-column structured-table formulasAutoFilterRange, AutoFilterColumns and SortStateXmlTable filter and sort metadata

Örnek

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;

Ayrıca bkz.

Copyright © 2010-2026 losLab Software