Class DataFormValidateFormEventArgs
Provides data for ValidateForm event.
Inheritance
System.Object
DataFormValidateFormEventArgs
Namespace: Syncfusion.Maui.DataForm
Assembly: Syncfusion.Maui.DataForm.dll
Syntax
public class DataFormValidateFormEventArgs : EventArgs
Remarks
ValidateForm event occurs on Manual and Manual.
Constructors
DataFormValidateFormEventArgs()
Declaration
public DataFormValidateFormEventArgs()
Properties
DataObject
Gets the DataObject.
Declaration
public object DataObject { get; }
Property Value
Type |
---|
System.Object |
ErrorMessage
Gets the list of invalid fields with error message.
Declaration
public ReadOnlyDictionary<string, string> ErrorMessage { get; }
Property Value
Type |
---|
System.Collections.ObjectModel.ReadOnlyDictionary<System.String, System.String> |
NewValues
Gets the list of property values.
Declaration
public ReadOnlyDictionary<string, object> NewValues { get; }
Property Value
Type |
---|
System.Collections.ObjectModel.ReadOnlyDictionary<System.String, System.Object> |