windowsforms-devexpress-dot-xtraeditors-dot-baseedit-45226e20.md
Enables you to format the editor’s value (change the editor’s value when the formatting mechanism is invoked).
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DXCategory("Events")]
public event ConvertEditValueEventHandler FormatEditValue
<DXCategory("Events")>
Public Event FormatEditValue As ConvertEditValueEventHandler
The FormatEditValue 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. |
The editor’s FormatEditValue event is equivalent to the RepositoryItem.FormatEditValue event available via the BaseEdit.Properties object, i.e., adding/removing an event handler for the current event actually affects the RepositoryItem.FormatEditValue event.
Please refer to the RepositoryItem.FormatEditValue topic for detailed information.
See Also