PivotFieldDisplayTextEventArgs.IsPopulatingFilterDropdown Property
Gets whether the current event is called to populate the filter dropdown.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.XtraPivotGrid.v24.1.dll
NuGet Package: DevExpress.Win.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
Handle the PivotGridControl.FieldValueDisplayText event to complete the following tasks:
- customize the display text of column and row headers. The event fires in turn for each visible header, the IsPopulatingFilterDropdown property is set to false in this case.
- 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