Class CurrentCellValidatedEventArgsBase
Provides data for CurrentCellValidated event.
Inheritance
System.Object
CurrentCellValidatedEventArgsBase
Inherited Members
Namespace: Syncfusion.UI.Xaml.DataGrid
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class CurrentCellValidatedEventArgsBase : GridEventArgs
Constructors
CurrentCellValidatedEventArgsBase(Object)
Initializes a new instance of CurrentCellValidatedEventArgs class.
Declaration
public CurrentCellValidatedEventArgsBase(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The source of the event. |
Properties
ErrorMessage
Gets or sets the error message that is used to display the error information in-case of invalid data.
Declaration
public string ErrorMessage { get; }
Property Value
Type | Description |
---|---|
System.String | A string that is used to notify the error in data. |
NewValue
Gets or sets the new value of the cell which triggered this event.
Declaration
public object NewValue { get; }
Property Value
Type | Description |
---|---|
System.Object | The new value of the cell. |
OldValue
Gets the old value of the cell which triggered this event.
Declaration
public object OldValue { get; }
Property Value
Type | Description |
---|---|
System.Object | The old value of the cell. |
RowData
Gets the data item of corresponding row where the cell validation occurs.
Declaration
public object RowData { get; }
Property Value
Type | Description |
---|---|
System.Object | The data item of corresponding data row where the cell validation occurs. |