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

GroupFilterValue Class

A group filter value.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v21.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public class GroupFilterValue :
    PivotGroupFilterValue

The following members return GroupFilterValue objects:

Remarks

Group filter values are used to define which of the records in the data source should be displayed and used to calculate summaries within the PivotGrid control. Each group filter value corresponds to a field value from one of the group fields. If the corresponding field is not the last in the group, the filter value owns a collection of child filter values (the GroupFilterValue.ChildValues collection) that represent values from the next field. To learn more, see Group Filtering.

The GroupFilterValue objects are stored within the GroupFilterValuesCollection collections. These collections are owned by individual group filter values (GroupFilterValue.ChildValues) and field groups (PivotGridGroup.FilterValues).

The field value that corresponds to the current filter value is obtained using the Value property. To obtain the field to which the filter value belongs, use the GroupFilterValue.Field property.

Inheritance

Object
DevExpress.XtraPivotGrid.PivotFilterValue
PivotGroupFilterValue
GroupFilterValue
See Also