[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IProtectionSettings.AllowFiltering

AllowFiltering Property

AllowFiltering

Gets or sets whether the user is allowed to use an AutoFilter that was created before the sheet was protected.

This property indicates whether filtering remains available after worksheet protection is enabled.

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