ClassSelectedPageChangingEventArgs
Class
Provides data for a page changing event.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
cs-api-definition
public class SelectedPageChangingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsSelectedPageChangingEventArgs
Inherited Members
Constructors
SelectedPageChangingEventArgs(WizardPage, WizardPage, WizardDirection)
Initializes a new instance of the SelectedPageChangingEventArgs class.
Declaration
cs-api-definition
public SelectedPageChangingEventArgs(WizardPage oldPage, WizardPage newPage, WizardDirection direction)
Parameters
oldPage
The selected page.
newPage
The new page.
direction
The direction.
Properties
Direction
Gets the direction.
Declaration
cs-api-definition
public WizardDirection Direction { get; }
Property Value
The direction.
NewPage
Gets the wizard page to be selected.
Declaration
cs-api-definition
public WizardPage NewPage { get; }
Property Value
The new page.
OldPage
Gets the current selected page.
Declaration
cs-api-definition
public WizardPage OldPage { get; }
Property Value
The current selected page.