Class DataGridUndoRedoEventArgs
Provides data for the CellUndoing and CellRedoing events.
Inheritance
System.Object
DataGridUndoRedoEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridUndoRedoEventArgs : CancelEventArgs
Constructors
DataGridUndoRedoEventArgs()
Initializes a new instance of the DataGridUndoRedoEventArgs class.
Declaration
public DataGridUndoRedoEventArgs()
Properties
Column
Gets the column definition of the cell being undone or redone.
Declaration
public DataGridColumn Column { get; set; }
Property Value
| Type |
|---|
| DataGridColumn |
ColumnIndex
Gets the zero-based column index of the cell being undone or redone.
Declaration
public int ColumnIndex { get; set; }
Property Value
| Type |
|---|
| System.Int32 |
NewValue
Gets the new value of the cell. For undo operations, this is the undone value. For redo operations, this is the value being reapplied.
Declaration
public object NewValue { get; set; }
Property Value
| Type |
|---|
| System.Object |
OldValue
Gets the previous value of the cell. For undo operations, this is the original value. For redo operations, this is the value before the redo.
Declaration
public object OldValue { get; set; }
Property Value
| Type |
|---|
| System.Object |
RowIndex
Gets the zero-based row index of the cell being undone or redone.
Declaration
public int RowIndex { get; set; }
Property Value
| Type |
|---|
| System.Int32 |