PivotFieldDisplayTextEventArgs.IsPopulatingFilterDropdown Property
Gets whether the current event is called to populate the filter dropdown.
Namespace: DevExpress.Xpf.PivotGrid
Assembly: DevExpress.Xpf.PivotGrid.v24.1.dll
NuGet Package: DevExpress.Wpf.PivotGrid
Declaration
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