Docs HotXLS

Next-property

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

Syntaxe

property Next: TXLSWorksheet;

Exemple

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);