Class ValidatedEventArgs
Provides data for Validated event.
Inheritance
System.Object
ValidatedEventArgs
Namespace: Syncfusion.XForms.DataForm
Assembly: Syncfusion.SfDataForm.XForms.dll
Syntax
public class ValidatedEventArgs : EventArgs
Constructors
ValidatedEventArgs()
Declaration
public ValidatedEventArgs()
Properties
ErrorMessage
Gets a error message of DataFormItem in case of invalid data.
Declaration
public string ErrorMessage { get; }
Property Value
Type | Description |
---|---|
System.String | The error message. |
IsValid
Gets a value indicating whether the data form item is valid or not.
Declaration
public bool IsValid { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
PropertyName
Gets a name of the DataFormItem.
Declaration
public string PropertyName { get; }
Property Value
Type | Description |
---|---|
System.String | The name of the property. |
ValidMessage
Gets a valid message of DataFormItem in case of valid data.
Declaration
public string ValidMessage { get; }
Property Value
Type | Description |
---|---|
System.String | The valid message. |
Value
Gets a value of data field validating.
Declaration
public object Value { get; }
Property Value
Type | Description |
---|---|
System.Object | The value. |