[]
Gets the IFilters collection that represents all the filters in an autofiltered range.
IFilters Filters { get; }
ReadOnly Property Filters As IFilters
IRange range = worksheet.Range["A1:B4"];
range.Value = new object[,] {{"Name", "Value"}, {"A", 100}, {"B", 200}, {"C", 50}};
range.AutoFilter(1, ">=100");
IAutoFilter autoFilter = worksheet.AutoFilter;
IFilters filters = autoFilter.Filters;