Skip to main content
A newer version of this page is available. .

TreeList.CustomFilterDisplayText Event

Allows the text displayed within the Filter Panel to be customized.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

public event ConvertEditValueEventHandler CustomFilterDisplayText

Event Data

The CustomFilterDisplayText event's data class is ConvertEditValueEventArgs. The following properties provide information specific to this event:

Property Description
Handled Gets or sets a value specifying whether default edit value conversion/formatting is required.
Value Gets or sets either the edit or the display value of an editor.

Remarks

The CustomFilterDisplayText event allows you to customize the text displayed within the Filter Panel. The event parameter’s ConvertEditValueEventArgs.Value property specifies the current filter criteria. To specify the filter string displayed within the Filter Panel, assign the required string to the ConvertEditValueEventArgs.Value property and set the Handled property to true.

See Also