GroupFilterValues.FilterType Property
In This Article
Gets or sets the filter type.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v14.2.dll
#Declaration
[XtraSerializablePropertyId(0)]
[XtraSerializableProperty(1)]
public FieldFilterType FilterType { get; set; }
#Property Value
Type | Description |
---|---|
Field |
A Field |
#Remarks
If the FilterType property is set to FieldFilterType.Included, only the data source records that correspond to one of the filter values (stored within the PivotGroupFilterValues.Values collection) will be processed. Otherwise, if the FilterType property is set to FieldFilterType.Excluded, only the data source records that do not correspond to any filter value will be processed.
A group filter value corresponds to a data source record if the following conditions are met:
- The data source record contains the group filter value in the respective field.
- The data source record contains the group filter value's parent values in the respective fields.
- The group filter value does not contain child values.
To learn more, see Group Filtering.
See Also