New to Telerik UI for WPFStart a free 30-day trial

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 CancelRoutedEventArgs.Cancel

Constructors

Initializes a new instance of the ColumnReorderingEventArgs class.

C#
public ColumnReorderingEventArgs(GridViewColumn column, int index)
Parameters:columnGridViewColumn

The column that is reordering.

indexint

The 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; }