Represents data for the CurrentCellChanged event.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class CurrentCellChangedEventArgs : EventArgs
Inheritance: objectEventArgsCurrentCellChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the CurrentCellChangedEventArgs class.
C#
public CurrentCellChangedEventArgs(DataGridCellInfo oldCell, DataGridCellInfo newCell)
The old current cell.
newCellDataGridCellInfoThe new current cell.
Properties
Gets the new CurrentCell.
C#
public DataGridCellInfo NewCurrentCell { get; }
Gets the old CurrentCell.
C#
public DataGridCellInfo OldCurrentCell { get; }