New to Telerik UI for .NET MAUIStart a free 30-day trial

Event arguments providing additional validation information for the DataFormEditor.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class DataFormEditorValidationCompletedEventArgs : DataFormValidationCompletedEventArgs

Inheritance: objectEventArgsDataFormValidationCompletedEventArgsDataFormEditorValidationCompletedEventArgs

Inherited Members DataFormValidationCompletedEventArgs.ValidationErrorsDataFormValidationCompletedEventArgs.HasValidationErrorsEventArgs.Empty

Constructors

Initializes a new instance of the DataFormEditorValidationCompletedEventArgs class.

C#
public DataFormEditorValidationCompletedEventArgs(string propertyName, object propertyValue, object editorValue, IReadOnlyList<DataFormValidationError> validationErrors)
Parameters:propertyNamestring

Specifies the name of the validated property.

propertyValueobject

Specifies the original value of the validated property in the model.

editorValueobject

Specifies 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.

C#
public object EditorValue { get; }

Gets the name of the validated property.

C#
public string PropertyName { get; }

Gets the original value of the validated property in the model.

C#
public object PropertyValue { get; }