Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

PivotFilterCollection Interface

A collection of filters applied to the PivotTable fields.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v20.2.Core.dll

Declaration

public interface PivotFilterCollection :
    ISimpleCollection<PivotFilter>,
    IEnumerable<PivotFilter>,
    IEnumerable,
    ICollection

Remarks

Use the PivotTable.Filters property to get access to the PivotFilterCollection collection. To add a new filter to a specific row or column field in the PivotTable report, use the PivotFilterCollection.Add method overloads.

To remove a filter from the collection, use the PivotFilterCollection.Remove or PivotFilterCollection.RemoveAt method.

To clear all filters applied to the PivotTable fields, call the PivotFilterCollection.Clear method.

See Also