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