Class DataGridCellValidatedEventArgs
Provides data for the CellValidated event.
Inheritance
System.Object
DataGridCellValidatedEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridCellValidatedEventArgs : EventArgs
Constructors
DataGridCellValidatedEventArgs(Object)
Initializes a new instance of DataGridCellValidatedEventArgs class.
Declaration
public DataGridCellValidatedEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The source of the event. |
Properties
Column
Gets or sets the column of the cell.
Declaration
public DataGridColumn Column { get; }
Property Value
Type | Description |
---|---|
DataGridColumn | Returns the column of the cell. |
ErrorMessage
Gets or sets the error message.
Declaration
public string ErrorMessage { get; }
Property Value
Type | Description |
---|---|
System.String | Returns the error message. |
NewValue
Gets or sets the new value of the cell.
Declaration
public object NewValue { get; }
Property Value
Type | Description |
---|---|
System.Object | Returns the new value of the cell. |
OldValue
Gets or sets the old value of the cell.
Declaration
public object OldValue { get; }
Property Value
Type | Description |
---|---|
System.Object | Returns the old value of the cell. |
RowData
Gets or sets the underlying data object for row.
Declaration
public object RowData { get; }
Property Value
Type | Description |
---|---|
System.Object | Returns the underlying data object for row. |