Dokumentacija HotXLS

Next svojstvo

Vraća a TXLSWorksheet object that represents the next sheet. Read-only

Sintaksa

property Next: TXLSWorksheet;

Primjer

This example displays the name of the next sheet

if Assigned(Worksheet.Next) then
   MessageDlg('The next Worksheet name is "' + Worksheet.Next.Name + '"',
           mtInformation, [mbOk], 0);