Vraća the value that indicates whether the Worksheet is protected. Read-only Boolean
Sintaksa
property IsProtected: boolean;
Primjer
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;
Vidi također