Class CurrentCellChangedEventArgs
Represents data for the CurrentCellChanged event.
Inheritance
System.Object
CurrentCellChangedEventArgs
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class CurrentCellChangedEventArgs : EventArgs
Constructors
CurrentCellChangedEventArgs(DataGridCellInfo, DataGridCellInfo)
Initializes a new instance of the CurrentCellChangedEventArgs class.
Declaration
public CurrentCellChangedEventArgs(DataGridCellInfo oldCell, DataGridCellInfo newCell)
Parameters
DataGridCellInfo
oldCell
The old current cell. |
DataGridCellInfo
newCell
The new current cell. |
Properties
NewCurrentCell
Gets the new CurrentCell.
Declaration
public DataGridCellInfo NewCurrentCell { get; }
Property Value
DataGridCellInfo
|
OldCurrentCell
Gets the old CurrentCell.
Declaration
public DataGridCellInfo OldCurrentCell { get; }
Property Value
DataGridCellInfo
|