Class PositionChangingEventArgs
Provides data for the PositionChanging event.
Inheritance
System.Object
PositionChangingEventArgs
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class PositionChangingEventArgs : CancelEventArgs
Constructors
PositionChangingEventArgs(GridViewRowInfo, GridViewColumn)
Initializes a new instance of the PositionChangingEventArgs class.
Declaration
public PositionChangingEventArgs(GridViewRowInfo row, GridViewColumn column)
Parameters
GridViewRowInfo
row
The new row. |
GridViewColumn
column
The new column. |
Properties
Column
Gets the columnm that should be the new current column.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
|
Row
Gets the row that should be the new current row.
Declaration
public GridViewRowInfo Row { get; }
Property Value
GridViewRowInfo
|