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

PivotGridField.SetFilterValues(Object[], FieldFilterType, Boolean) Method

Adds the specified filter values to the collection.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.PivotGrid, DevExpress.Wpf.PivotGrid

Declaration

public void SetFilterValues(
    object[] values,
    FieldFilterType filterType,
    bool showBlanks
)

Parameters

Name Type Description
values Object[]

An object that represents a collection of field filter values.

filterType FieldFilterType

A FieldFilterType enumeration member that specifies the filter type.

showBlanks Boolean

True, to show blank values; otherwise, false.

Remarks

You can get or set the field filter values collection by using the PivotGridField.FieldFilterValues property.

To add filter values to the collection asynchronously, use the PivotGridField.SetFilterValuesAsync method.

Example

This example shows how to apply a filter to a field.

The first filter selects records which contain UK in the fieldCountry field, the second filter selects four categories in the fieldCategoryName field: Beverages, Condiments, Seafood, and Produce.

View Example: How to Apply a Filter to a Field

    fieldCountry.SetFilterValues(new string[] { "UK" }, FieldFilterType.Included, true);
    fieldCategoryName.SetFilterValues(new string[] { "Beverages", "Condiments", "Seafood", "Produce" }, FieldFilterType.Included, true);
See Also