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

PivotFieldDisplayTextEventArgs.IsPopulatingFilterDropdown Property

Gets whether the current event is called to populate the filter dropdown.

Namespace: DevExpress.Xpf.PivotGrid

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

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public bool IsPopulatingFilterDropdown { get; }

#Property Value

Type Description
Boolean

true if the event is called to populate the filter dropdown; false if the event is called to customize the display text of column and row headers.

#Remarks

The PivotGridControl.FieldValueDisplayText event can be handled to perform the following:

  • to customize the display text of column and row headers. The event fires in turn for each visible header; in this case, the IsPopulatingFilterDropdown property is set to false.
  • to customize the display text of items displayed within the field’s filter dropdown. The event fires when a filter dropdown is invoked for each filter item. The IsPopulatingFilterDropdown property is set to true in this case.
See Also