Class SelectedPipChangedEventArgs
Contains information for the SelectedIndexChanged event..
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.PipsPager
Assembly: Telerik.WinControls.UI.dll
Syntax
public class SelectedPipChangedEventArgs : EventArgs
Constructors
SelectedPipChangedEventArgs(PipsPagerItem, Int32, PipsPagerItem, Int32)
Initializes a new instance of the SelectedPipChangedEventArgs class.
Declaration
public SelectedPipChangedEventArgs(PipsPagerItem newPip, int newIndex, PipsPagerItem oldPip, int oldIndex)
Parameters
PipsPagerItem
newPip
The selected pip item. |
System.Int32
newIndex
The newly selected index. |
PipsPagerItem
oldPip
The pip element that was previously selected. |
System.Int32
oldIndex
The index that was previously selected. |
Properties
NewIndex
The newly selected index.
Declaration
public int NewIndex { get; }
Property Value
System.Int32
|
NewPip
The pips pager item selected in the RadPipsPagerElement.
Declaration
public PipsPagerItem NewPip { get; }
Property Value
PipsPagerItem
|
OldIndex
The index that was previously selected.
Declaration
public int OldIndex { get; }
Property Value
System.Int32
|
OldPip
The pips pager item that was previously selected.
Declaration
public PipsPagerItem OldPip { get; }
Property Value
PipsPagerItem
|