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

PivotGridControl.ActiveFilter Property

Provides access to settings of the filter applied to the PivotGridControl‘s data.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
[DXCategory("Data")]
public PivotFilter ActiveFilter { get; }

Property Value

Type Description
PivotFilter

A PivotFilter object that is a filter applied to data displayed in the PivotGridControl.

Remarks

To learn more about filtering, see Filtering Overview.

Note

Filter Panel and Filter Editor display ActiveFilter instead of PivotGridControl.Prefilter if the following conditions are met:

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" }));
See Also