Class CurrentCellChangedEventArgs
Provides data for the CurrentCellChanged event
Inheritance
System.Object
System.EventArgs
CurrentCellChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class CurrentCellChangedEventArgs : EventArgs
Constructors
CurrentCellChangedEventArgs(GridViewRowInfo, GridViewColumn, GridViewRowInfo, GridViewColumn)
Initializes a new instance of the CurrentCellChangedEventArgs class.
Declaration
public CurrentCellChangedEventArgs(GridViewRowInfo oldRow, GridViewColumn oldColumn, GridViewRowInfo newRow, GridViewColumn newColumn)
Parameters
GridViewRowInfo
oldRow
|
GridViewColumn
oldColumn
|
GridViewRowInfo
newRow
|
GridViewColumn
newColumn
|
Properties
CurrentCell
Gets the previous current cell.
Declaration
public GridViewCellInfo CurrentCell { get; }
Property Value
GridViewCellInfo
|
NewCell
Gets the new current cell.
Declaration
public GridViewCellInfo NewCell { get; }
Property Value
GridViewCellInfo
|