[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.AutoFilterMode

AutoFilterMode Property

AutoFilterMode

Gets or sets whether the AutoFilter drop-down arrows are currently displayed on the sheet.

This property indicates whether the worksheet is showing the AutoFilter drop-down buttons for filtered ranges.

Declaration
bool AutoFilterMode { get; set; }
Property AutoFilterMode As Boolean
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Value"},
    {"A", 100},
    {"B", 200}
};
worksheet.Range["A1:B3"].AutoFilter();
worksheet.AutoFilterMode = true;
bool autoFilterMode = worksheet.AutoFilterMode;