Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotCustomFilterPopupItemsEventArgs.Items Property

Gets the collection of filter items.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public IList<PivotGridFilterItem> Items { get; }

#Property Value

Type Description
IList<PivotGridFilterItem>

A list of PivotGridFilterItem objects that represent the filter items.

#Remarks

Initially, the Items collection contains items representing the unique values stored in the underlying data source in the current field. To hide individual items from the filter dropdown, remove the respective elements from the Items collection.

To obtain the field for which the event has been raised, use the PivotCustomFilterPopupItemsEventArgs.Field property.

See Also