New to Telerik UI for .NET MAUIStart a free 30-day trial

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

Constructors

Initializes a new instance of the CurrentCellChangedEventArgs class.

C#
public CurrentCellChangedEventArgs(DataGridCellInfo oldCell, DataGridCellInfo newCell)
Parameters:oldCellDataGridCellInfo

The old current cell.

newCellDataGridCellInfo

The new current cell.

Properties

Gets the new CurrentCell.

C#
public DataGridCellInfo NewCurrentCell { get; }

Gets the old CurrentCell.

C#
public DataGridCellInfo OldCurrentCell { get; }