Skip to main content
Row

PivotFilterCollection Interface

A collection of filters applied to the PivotTable fields.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

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

The following members return PivotFilterCollection objects:

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