Class DataFormValidatePropertyEventArgs
Provides data for ValidateProperty event.
Inheritance
System.Object
DataFormValidatePropertyEventArgs
Namespace: Syncfusion.Maui.DataForm
Assembly: Syncfusion.Maui.DataForm.dll
Syntax
public class DataFormValidatePropertyEventArgs : EventArgs
Constructors
DataFormValidatePropertyEventArgs()
Initializes a new instance of the DataFormValidatePropertyEventArgs class.
Declaration
public DataFormValidatePropertyEventArgs()
Properties
CurrentValue
Gets the current value of property.
Declaration
public object CurrentValue { get; }
Property Value
Type |
---|
System.Object |
ErrorMessage
Gets or sets the invalid message.
Declaration
public string ErrorMessage { get; set; }
Property Value
Type |
---|
System.String |
IsValid
Gets or sets a value indicating whether the new value is valid or not.
Declaration
public bool IsValid { get; set; }
Property Value
Type |
---|
System.Boolean |
NewValue
Gets the new value of the property.
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
PropertyName
Gets the property name.
Declaration
public string PropertyName { get; }
Property Value
Type |
---|
System.String |
ValidMessage
Gets or sets the valid message.
Declaration
public string ValidMessage { get; set; }
Property Value
Type |
---|
System.String |