Class ColumnReorderingEventArgs
Holds the information of column reordering passed when GridViewDataControl ColumnReordering Event is raised.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class ColumnReorderingEventArgs : CancelRoutedEventArgs
Constructors
ColumnReorderingEventArgs(GridViewColumn, Int32)
Initializes a new instance of the ColumnReorderingEventArgs class.
Declaration
public ColumnReorderingEventArgs(GridViewColumn column, int index)
Parameters
GridViewColumn
column
The column that is reordering. |
System.Int32
index
The new index where the column is reordered. |
Properties
Column
The column that is reordering.
Declaration
public GridViewColumn Column { get; }
Property Value
GridViewColumn
|
NewDisplayIndex
Hold the new position of the column.
Declaration
public int NewDisplayIndex { get; set; }
Property Value
System.Int32
|