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

PivotFilterType Enum

Contains the values that specify a field’s filter type in the XtraPivotGrid control.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v19.2.Core.dll

Declaration

public enum PivotFilterType

Members

Name Description
Excluded

Specifies that the XtraPivotGrid control should not display the filter values. All the other values will be displayed.

Included

Specifies that the XtraPivotGrid control should display only the filter values.

Related API Members

The following properties accept/return PivotFilterType values:

Library Related API Members
Cross-Platform Class Library PivotGridFieldFilterValues.FilterType
PivotGroupFilterValues.FilterType
WinForms Controls PivotFieldFilterChangingEventArgs.FilterType
ASP.NET Controls and MVC Extensions PivotFieldFilterChangingEventArgs.FilterType

Remarks

Field values in the XtraPivotGrid control can be filtered. The PivotGridFieldFilterValues.FilterType property of the PivotFilterType class specifies a field’s filter type.

A field’s PivotGridFieldFilterValues.Values collection contain filter values. If the FilterType property is set to Included, only the records which contain values from the Values array of a specific field are displayed by the XtraPivotGrid control. If the FilterType property is set to Excluded, only the records which don’t contain values from the Values array of a specific field are displayed.

See Also