[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IProtectionSettings.AllowDeletingRows

AllowDeletingRows Property

AllowDeletingRows

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

This setting is meaningful only when worksheet protection is enabled.

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