Class
SelectedIndexChangedEventArgs

Represents event data of the SelectedIndexChanged event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class SelectedIndexChangedEventArgs : EventArgs

Inheritance: objectEventArgsSelectedIndexChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

SelectedIndexChangedEventArgs(int, int)

Initializes a new instance of the SelectedIndexChangedEventArgs class.

Declaration

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

Parameters

oldIndex

int

newIndex

int

Properties

NewIndex

Gets the index of currently selected item.

Declaration

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

Property Value

int

OldIndex

Gets the index of previously selected item.

Declaration

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

Property Value

int