[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IProtectionSettings.AllowDeletingColumns

AllowDeletingColumns Property

AllowDeletingColumns

Gets or sets whether the deletion of columns is allowed on a protected worksheet.

This setting is meaningful only when worksheet protection is enabled.

Declaration
bool AllowDeletingColumns { get; set; }
Property AllowDeletingColumns As Boolean
Examples
worksheet.Protection = true;
IProtectionSettings protectionSettings = worksheet.ProtectionSettings;
protectionSettings.AllowDeletingColumns = true;
bool allowDeletingColumns = protectionSettings.AllowDeletingColumns;