FilterBehavior.CustomValueDisplayText Event
In This Article
Allows you to customize the display text for a filter value.
Namespace: DevExpress.Xpf.Core.FilteringUI
Assembly: DevExpress.Xpf.Grid.v24.2.dll
NuGet Package: DevExpress.Wpf.Grid.Core
#Declaration
public event EventHandler<CustomValueDisplayTextEventArgs> CustomValueDisplayText
#Event Data
The CustomValueDisplayText event's data class is CustomValueDisplayTextEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Display |
Gets or sets the display text for a filter value. |
Field |
Gets a field name of a column with filter values. |
Value | Gets a filter value. |
#Remarks
Use the CustomValueDisplayText event to:
- Customize display values in the RadioListFilterElement, CheckedListFilterElement, CheckedTreeListFilterElement.
- Customize the display text returned by the FilterBehavior.FilterDisplayText property.
See Also