Dessa Boolean-egenskaper styr behörigheterna per åtgärd som sparas i BIFF8-posten SheetProtect för ett skyddat klassiskt XLS-kalkylblad. Sätt dem innan arbetsboken sparas; anropa Protect to enable worksheet
protection
Syntax
property AllowEditObjects: Boolean;
property AllowEditScenarios: Boolean;
property AllowFormatCells: Boolean;
property AllowFormatColumns: Boolean;
property AllowFormatRows: Boolean;
property AllowInsertColumns: Boolean;
property AllowInsertRows: Boolean;
property AllowInsertHyperlinks: Boolean;
property AllowDeleteColumns: Boolean;
property AllowDeleteRows: Boolean;
property AllowSelectLockedCells: Boolean;
property AllowSort: Boolean;
property AllowAutoFilter: Boolean;
property AllowPivotTables: Boolean;
property AllowSelectUnlockedCells: Boolean;
Default values
AllowSelectLockedCells and
AllowSelectUnlockedCells default to True
The other permission properties default to False
Exempel
Sheet.AllowDeleteRows := True;
Sheet.AllowInsertRows := True;
Sheet.AllowAutoFilter := True;
Sheet.Protect('mypass123');
Se även