PivotFieldDisplayTextEventArgsBase<T>.IsPopulatingFilterDropdown Property
Gets whether the FieldValueDisplayText event is called to populate the filter dropdown.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.PivotGrid.v24.2.Core.dll
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 FieldValueDisplayText event can be handled to perform the following:
- customize the display text of column and row headers. The event fires for each visible header in turn. , In this case, the IsPopulatingFilterDropdown property is set to false.
- customize the display text of items displayed within the field filter dropdown. The event fires when a filter dropdown is invoked for a filter item. In this case, the IsPopulatingFilterDropdown property is set to true.
See Also