[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITable.ShowAutoFilterDropDown

ShowAutoFilterDropDown Property

ShowAutoFilterDropDown

Gets or sets whether the table filter button is visible.

This property indicates whether the drop-down buttons are shown in the table header row.

Declaration
bool ShowAutoFilterDropDown { get; set; }
Property ShowAutoFilterDropDown As Boolean
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Value"},
    {"Test", 100},
    {"Hello", 200}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
bool showAutoFilterDropDown = table.ShowAutoFilterDropDown;