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

BaseEdit.CustomDisplayText Event

Enables you to display a custom text within the editor.

Namespace: DevExpress.UI.Xaml.Editors

Assembly: DevExpress.UI.Xaml.Editors.v18.2.dll

Declaration

public event CustomDisplayTextEventHandler CustomDisplayText

Event Data

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

Property Description
DisplayText Gets or sets the text displayed within the editor.
EditValue Gets or sets the editor’s value.

Remarks

To display a custom text within the editor, assign it to the event parameter’s DisplayText property and set the Handled property to true. Note that this doesn’t change the editor’s BaseEdit.EditValue property.

See Also