TextEdit.CustomDisplayText Event
In This Article
Enables you to display a custom text within the editor.
Namespace: DevExpress.WinUI.Editors
Assembly: DevExpress.WinUI.Editors.v23.2.dll
NuGet Package: DevExpress.WinUI
#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 |
---|---|
Display |
Gets or sets the text displayed within the editor. |
Edit |
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 EditValue property.
See Also