ExcelProtectionAllowFlags Enumeration
The allowed operations for a protected worksheet.
Namespace: Winnovative.ExcelLibAssembly: WnvXls_NetCore (in WnvXls_NetCore.dll) Version: 11.0.0
[FlagsAttribute]
public enum ExcelProtectionAllowFlags
<FlagsAttribute>
Public Enumeration ExcelProtectionAllowFlags
[FlagsAttribute]
public enum class ExcelProtectionAllowFlags
[<FlagsAttribute>]
type ExcelProtectionAllowFlags
NoProtection | 0 |
The worksheet has no protection options.
|
AllowEditObjects | 1 |
Allow edit objects.
|
AllowEditScenarios | 2 |
Allow edit scenarios.
|
AllowFormatCells | 4 |
Allow format cells.
|
AllowFormatColumns | 8 |
Allow format columns.
|
AllowFormatRows | 16 |
Allow format rows.
|
AllowInsertColumns | 32 |
Allow insert columns.
|
AllowInsertRows | 64 |
Allow insert rows.
|
AllowInsertHyperlinks | 128 |
Allow insert hyperlinks.
|
AllowDeleteColumns | 256 |
Allow delete columns
|
AllowDeleteRows | 512 |
Allow delete rows
|
AllowSelectLockedCells | 1,024 |
Allow select locked cells.
|
AllowSort | 2,048 |
Allow sort.
|
AllowUseAutoFilter | 4,096 |
Allow use Auto Filter
|
AllowUsePivotTable | 8,192 |
Allow use Pivot Tables.
|
AllowNone | 16,384 |
No operation is allowed on a protected worksheet except selecting unlocked cells.
|
AllowSelectUnlockedCells | 16,384 |
Allow select unlocked cells.
|
AllowDefault | 17,408 |
The default protection allow selection of locked and unlocked cells
|
AllowAll | 32,767 |
All operations are allowed for a protected worksheet.
|