Ces propriétés Boolean contrôlent les permissions par action enregistrées dans l'enregistrement BIFF8 SheetProtect d'une feuille XLS classique protégée. Définissez-les avant d'enregistrer le classeur ; appelez Protect to enable worksheet
protection
Syntaxe
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
Exemple
Sheet.AllowDeleteRows := True;
Sheet.AllowInsertRows := True;
Sheet.AllowAutoFilter := True;
Sheet.Protect('mypass123');
Voir aussi