Class GridViewCurrentCellChangedEventArgs
Represents data for the CurrentCellChangedEvent.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewCurrentCellChangedEventArgs : RadRoutedEventArgs
Constructors
GridViewCurrentCellChangedEventArgs(GridViewCell, GridViewCell)
Initializes a new instance of the GridViewCurrentCellChangedEventArgs class.
Declaration
public GridViewCurrentCellChangedEventArgs(GridViewCell oldCell, GridViewCell newCell)
Parameters
GridViewCell
oldCell
The old cell. |
GridViewCell
newCell
The new cell. |
Properties
NewCell
Gets or sets the new cell.
Declaration
public GridViewCell NewCell { get; set; }
Property Value
GridViewCell
The new cell. |
OldCell
Gets or sets the old cell.
Declaration
public GridViewCell OldCell { get; set; }
Property Value
GridViewCell
The old cell. |