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

Provides data for the ColumnIndexChanged event

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class ColumnIndexChangedEventArgs : EventArgs

Inheritance: objectEventArgsColumnIndexChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ColumnIndexChangedEventArgs class.

C#
public ColumnIndexChangedEventArgs(int oldIndex, int newIndex)
Parameters:oldIndexint

The old column index.

newIndexint

The new column index.

Properties

Gets the new column index.

C#
public int NewIndex { get; }

Gets the old column index.

C#
public int OldIndex { get; }