Class ColumnIndexChangedEventArgs
Provides data for the ColumnIndexChanged event
Inheritance
System.Object
System.EventArgs
ColumnIndexChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class ColumnIndexChangedEventArgs : EventArgs
Constructors
ColumnIndexChangedEventArgs(Int32, Int32)
Initializes a new instance of the ColumnIndexChangedEventArgs class.
Declaration
public ColumnIndexChangedEventArgs(int oldIndex, int newIndex)
Parameters
System.Int32
oldIndex
The old column index. |
System.Int32
newIndex
The new column index. |
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
|