Class RowValidatedEventArgs
Represents the class that provides the information for the RowValidated event.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class RowValidatedEventArgs : GridEventArgs
Constructors
RowValidatedEventArgs(DataRowBase, String, Object)
Initializes a new instance of the RowValidatedEventArgs class.
Declaration
public RowValidatedEventArgs(DataRowBase dataRow, string errorMessage, object originalSender)
Parameters
Type | Name | Description |
---|---|---|
DataRowBase | dataRow | The data associated with the row. |
System.String | errorMessage | The error message of the row if not valid. |
System.Object | originalSender | The original sender of the event. |
Properties
DataRow
Gets the data object associated with the row.
Declaration
public DataRowBase DataRow { get; }
Property Value
Type |
---|
DataRowBase |
ErrorMessage
Gets the error message of the row.
Declaration
public string ErrorMessage { get; }
Property Value
Type |
---|
System.String |