Class
CurrentCellChangedEventArgs

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 EventArgs.Empty

Constructors

CurrentCellChangedEventArgs(DataGridCellInfo, DataGridCellInfo)

Initializes a new instance of the CurrentCellChangedEventArgs class.

Declaration

cs-api-definition
public CurrentCellChangedEventArgs(DataGridCellInfo oldCell, DataGridCellInfo newCell)

Parameters

oldCell

DataGridCellInfo

The old current cell.

newCell

DataGridCellInfo

The new current cell.

Properties

NewCurrentCell

Gets the new CurrentCell.

Declaration

cs-api-definition
public DataGridCellInfo NewCurrentCell { get; }

Property Value

DataGridCellInfo

OldCurrentCell

Gets the old CurrentCell.

Declaration

cs-api-definition
public DataGridCellInfo OldCurrentCell { get; }

Property Value

DataGridCellInfo