HotXLS-dokumentation
Innehåll
Startsida
Översikt
TGridToXLS
IXLSWorkbook
Startsida
Innehåll
Översikt
Sheets egenskap
Returnerar a Sheets collection that represents all the sheets in the specified Workbook. Read-only Worksheets object
Syntax
property Sheets: TXLSWorksheets;
Exempel
This example creates a new Worksheet and then places a list of the active Workbook's sheet names in the first column
Sheet := Workbook.Add;
for i := 1 to Workbook.Sheets.Count do
Sheet.Cells.Item[i, 1].Value := Workbook.Sheets[i].Name;
Copyright © 2010-2026 losLab Software