Class
DataFormEditorValidationCompletedEventArgs

Event arguments providing additional validation information for the DataFormEditor.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class DataFormEditorValidationCompletedEventArgs : DataFormValidationCompletedEventArgs

Inheritance: objectEventArgsDataFormValidationCompletedEventArgsDataFormEditorValidationCompletedEventArgs

Inherited Members DataFormValidationCompletedEventArgs.ValidationErrorsDataFormValidationCompletedEventArgs.HasValidationErrorsEventArgs.Empty

Constructors

DataFormEditorValidationCompletedEventArgs(string, object, object, IReadOnlyList<DataFormValidationError>)

Initializes a new instance of the DataFormEditorValidationCompletedEventArgs class.

Declaration

cs-api-definition
public DataFormEditorValidationCompletedEventArgs(string propertyName, object propertyValue, object editorValue, IReadOnlyList<DataFormValidationError> validationErrors)

Parameters

propertyName

string

Specifies the name of the validated property.

propertyValue

object

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

editorValue

object

Specifies the modified value of the validated property in the editor.

validationErrors

IReadOnlyList<DataFormValidationError>

Specifies a collection of validation errors.

Properties

EditorValue

Gets the modified value of the validated property in the editor.

Declaration

cs-api-definition
public object EditorValue { get; }

Property Value

object

PropertyName

Gets the name of the validated property.

Declaration

cs-api-definition
public string PropertyName { get; }

Property Value

string

PropertyValue

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

Declaration

cs-api-definition
public object PropertyValue { get; }

Property Value

object