HotXLS-dokumentasjon

Previous egenskap

Returnerer a TXLSWorksheet object that represents the previous sheet. Read-only

Syntaks

property Previous: TXLSWorksheet;

Eksempel

This example displays the name of the previous sheet

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