Event arguments providing additional validation information for the DataFormEditor.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class DataFormEditorValidationCompletedEventArgs : DataFormValidationCompletedEventArgs
Inheritance: objectEventArgsDataFormValidationCompletedEventArgsDataFormEditorValidationCompletedEventArgs
Inherited Members
Constructors
Initializes a new instance of the DataFormEditorValidationCompletedEventArgs class.
public DataFormEditorValidationCompletedEventArgs(string propertyName, object propertyValue, object editorValue, IReadOnlyList<DataFormValidationError> validationErrors)
Specifies the name of the validated property.
propertyValueobjectSpecifies the original value of the validated property in the model.
editorValueobjectSpecifies the modified value of the validated property in the editor.
validationErrorsIReadOnlyList<DataFormValidationError>Specifies a collection of validation errors.
Properties
Gets the modified value of the validated property in the editor.
public object EditorValue { get; }
Gets the name of the validated property.
public string PropertyName { get; }
Gets the original value of the validated property in the model.
public object PropertyValue { get; }