BaseEdit.CustomDisplayText Event
Enables you to display a custom text within the editor.
Namespace: DevExpress.UI.Xaml.Editors
Assembly: DevExpress.UI.Xaml.Editors.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
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