Class ColumnIndexChangingEventArgs
Provides data for the ColumnIndexChanging event
Inheritance
System.Object
ColumnIndexChangingEventArgs
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class ColumnIndexChangingEventArgs : CancelEventArgs
Constructors
ColumnIndexChangingEventArgs(Int32, Int32)
Initializes a new instance of the ColumnIndexChangingEventArgs class.
Declaration
public ColumnIndexChangingEventArgs(int oldIndex, int newIndex)
Parameters
System.Int32
oldIndex
|
System.Int32
newIndex
|
ColumnIndexChangingEventArgs(Int32, Int32, Boolean)
Initializes a new instance of the ColumnIndexChangingEventArgs class.
Declaration
public ColumnIndexChangingEventArgs(int oldIndex, int newIndex, bool cancel)
Parameters
System.Int32
oldIndex
|
System.Int32
newIndex
|
System.Boolean
cancel
|
Properties
NewIndex
Gets the new column index.
Declaration
public int NewIndex { get; }
Property Value
System.Int32
|
OldIndex
Gets the old column index.
Declaration
public int OldIndex { get; }
Property Value
System.Int32
|