[]
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.
bool ShowAutoFilterDropDown { get; set; }
Property ShowAutoFilterDropDown As Boolean
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;