HotXLS-dokumentasjon

IsProtected egenskap

Returnerer the value that indicates whether the Worksheet is protected. Read-only Boolean

Syntaks

property IsProtected: boolean;

Eksempel

This example checks whether a worksheet is protected before updating a range. Worksheet protection is independent from workbook protection

var
  Sheet: TXLSWorksheet;
begin
  Sheet := Workbook.Sheets[1];

  if Sheet.IsProtected then
    Sheet.UnProtect;

  Sheet.Range['A1', 'A1'].Value := 'Updated';
end;

Se også