Documentazione HotXLS

Entries proprietà

Restituisce a TXLSWorksheet object from the Worksheets collection

Sintassi

proprietà Entries[Index: Integer]: TXLSWorksheet; default;
Index Integer. The index number of the Worksheet proprietà returned

Esempio

This example sets the name of Worksheet one

Workbook.Worksheets.Entries[1].Name := 'First sheet';
This example is similar to previous example

Workbook.Worksheets[1].Name := 'First sheet';