Class
ColumnIndexChangedEventArgs

Provides data for the ColumnIndexChanged event

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class ColumnIndexChangedEventArgs : EventArgs

Inheritance: objectEventArgsColumnIndexChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

ColumnIndexChangedEventArgs(int, int)

Initializes a new instance of the ColumnIndexChangedEventArgs class.

Declaration

cs-api-definition
public ColumnIndexChangedEventArgs(int oldIndex, int newIndex)

Parameters

oldIndex

int

The old column index.

newIndex

int

The new column index.

Properties

NewIndex

Gets the new column index.

Declaration

cs-api-definition
public int NewIndex { get; }

Property Value

int

OldIndex

Gets the old column index.

Declaration

cs-api-definition
public int OldIndex { get; }

Property Value

int