Skip to main content

UpdateEditorSource Enum

Lists values that specify the action that caused the editor’s validation.

Namespace: DevExpress.UI.Xaml.Editors

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

public enum UpdateEditorSource

Members

Name Description
DontValidate

The validation won’t occur.

DoValidate

The BaseEdit.DoValidate method was called.

ValueChanging

The editor’s value has been changed programmatically (e.g. in code behind).

TextInput

The edit value has been changed by an end-user.

EnterKeyPressed

An end-user has changed the edit value and pressed the ENTER key (the BaseEdit.ValidateOnEnterKeyPressed property should be set to true).

LostFocus

The editor is about to lose the focus.

Related API Members

The following properties accept/return UpdateEditorSource values:

Remarks

Values listed by this enumeration are used to set the value of the ValidationEventArgs.UpdateSource value.

See Also