Class DataFormEditorValidationCompletedEventArgs
Event arguments providing additional validation information for the Data
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 Data
Declaration
public DataFormEditorValidationCompletedEventArgs(string propertyName, object propertyValue, object editorValue, IReadOnlyList<DataFormValidationError> validationErrors)
Parameters
System. Specifies the name of the validated property. |
System. Specifies the original value of the validated property in the model. |
System. Specifies the modified value of the validated property in the editor. |
System. 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.
|
PropertyName
Gets the name of the validated property.
Declaration
public string PropertyName { get; }
Property Value
System.
|
PropertyValue
Gets the original value of the validated property in the model.
Declaration
public object PropertyValue { get; }
Property Value
System.
|