Class ValidatingEventArgs
Provides data for Validating event.
Inheritance
System.Object
ValidatingEventArgs
Namespace: Syncfusion.XForms.DataForm
Assembly: Syncfusion.SfDataForm.XForms.dll
Syntax
public class ValidatingEventArgs : EventArgs
Constructors
ValidatingEventArgs()
Declaration
public ValidatingEventArgs()
Properties
ErrorMessage
Gets or sets a error message of DataFormItem in case of invalid data.
Declaration
public string ErrorMessage { get; set; }
Property Value
Type | Description |
---|---|
System.String | The error message. |
IsValid
Gets or sets a value indicating whether the data form item is valid or not.
Declaration
public bool IsValid { get; set; }
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 or sets a valid message of DataFormItem in case of valid data.
Declaration
public string ValidMessage { get; set; }
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. |