Class
ColumnReorderingEventArgs

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:

cs-api-definition
public class ColumnReorderingEventArgs : CancelRoutedEventArgs

Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsColumnReorderingEventArgs

Inherited Members CancelRoutedEventArgs.Cancel

Constructors

ColumnReorderingEventArgs(GridViewColumn, int)

Initializes a new instance of the ColumnReorderingEventArgs class.

Declaration

cs-api-definition
public ColumnReorderingEventArgs(GridViewColumn column, int index)

Parameters

column

GridViewColumn

The column that is reordering.

index

int

The new index where the column is reordered.

Properties

Column

The column that is reordering.

Declaration

cs-api-definition
public GridViewColumn Column { get; }

Property Value

GridViewColumn

NewDisplayIndex

Hold the new position of the column.

Declaration

cs-api-definition
public int NewDisplayIndex { get; set; }

Property Value

int