Skip to main content
A newer version of this page is available. .

PivotFilter Class

A filter applied to data displayed in the PivotGridControl.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v18.2.dll

Declaration

public class PivotFilter :
    PivotFilterBase,
    IFilterFormOwner,
    IUIFilterSource,
    IXtraSerializable

The following members return PivotFilter objects:

Remarks

Use the PivotGridControl.ActiveFilter property to access filter settings of the PivotGridControl.

To learn more about filtering, see Filtering Overview.

Example

The example below shows how to apply complex filter criteria in code using the PivotFilter.Criteria property. This property is exposed by the PivotFilter object that can be accessed using PivotGridControl.ActiveFilter.

using DevExpress.Data.Filtering;
// ...
            pivotGridControl.ActiveFilter.Criteria = new GroupOperator(GroupOperatorType.And,
                new InOperator(fieldTrademark.PrefilterColumnName, new string[] { "Chevrolet", "Chrysler", "Dodge", "Ford" }),
                new InOperator(fieldBodyStyle.PrefilterColumnName, new string[] { "Coupe" }));

Inheritance

Object
DevExpress.Utils.Controls.DisposableObject
See Also