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