Holds the information of column reordering passed when GridViewDataControl ColumnReordering Event is raised.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
C#
public class ColumnReorderingEventArgs : CancelRoutedEventArgs
Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsColumnReorderingEventArgs
Inherited Members
Constructors
Initializes a new instance of the ColumnReorderingEventArgs class.
C#
public ColumnReorderingEventArgs(GridViewColumn column, int index)
The column that is reordering.
indexintThe new index where the column is reordered.
Properties
The column that is reordering.
C#
public GridViewColumn Column { get; }
Hold the new position of the column.
C#
public int NewDisplayIndex { get; set; }