Class
ColumnIndexChangingEventArgs

Provides data for the ColumnIndexChanging event

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class ColumnIndexChangingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsColumnIndexChangingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

ColumnIndexChangingEventArgs(int, int)

Initializes a new instance of the ColumnIndexChangingEventArgs class.

Declaration

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

Parameters

oldIndex

int

newIndex

int

ColumnIndexChangingEventArgs(int, int, bool)

Initializes a new instance of the ColumnIndexChangingEventArgs class.

Declaration

cs-api-definition
public ColumnIndexChangingEventArgs(int oldIndex, int newIndex, bool cancel)

Parameters

oldIndex

int

newIndex

int

cancel

bool

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