Packagecom.vmware.widgets.events
Classpublic class WizardEvent
InheritanceWizardEvent Inheritance flash.events.Event

Represents events dispatched by IWizard objects, such as Wizard.



Public Properties
 PropertyDefined By
  newPageInfo : PageInfo
[read-only] The new page info when the event type is PAGE_CHANGED.
WizardEvent
  oldPageInfo : PageInfo
[read-only] The old page info when the event type is PAGE_CHANGED.
WizardEvent
Public Methods
 MethodDefined By
  
WizardEvent(type:String, oldPageInfo:PageInfo = null, newPageInfo:PageInfo = null)
Constructor; normally called by IWizard and not used in application code.
WizardEvent
Public Constants
 ConstantDefined By
  NAVIGATOR_CHANGED : String = wizardEventNavigatorChanged
[static] Defines the value of the type property for a wizardEventNavigatorChanged event, which indicates that the wizard navigator has changed.
WizardEvent
  PAGE_CHANGED : String = wizardEventPageChanged
[static] Defines the value of the type property for a pageChanged event, which indicates that a page has changed using the Next/Previous buttons, or the page navigator.
WizardEvent
Property Detail
newPageInfoproperty
newPageInfo:PageInfo  [read-only]

The new page info when the event type is PAGE_CHANGED.


Implementation
    public function get newPageInfo():PageInfo
oldPageInfoproperty 
oldPageInfo:PageInfo  [read-only]

The old page info when the event type is PAGE_CHANGED.


Implementation
    public function get oldPageInfo():PageInfo
Constructor Detail
WizardEvent()Constructor
public function WizardEvent(type:String, oldPageInfo:PageInfo = null, newPageInfo:PageInfo = null)

Constructor; normally called by IWizard and not used in application code.

Parameters
type:String — The event type; indicates the action that caused the event.
 
oldPageInfo:PageInfo (default = null) — The old page when the event type is PAGE_CHANGED.
 
newPageInfo:PageInfo (default = null) — The new page when the event type is PAGE_CHANGED.
Constant Detail
NAVIGATOR_CHANGEDConstant
public static const NAVIGATOR_CHANGED:String = wizardEventNavigatorChanged

Defines the value of the type property for a wizardEventNavigatorChanged event, which indicates that the wizard navigator has changed.

PAGE_CHANGEDConstant 
public static const PAGE_CHANGED:String = wizardEventPageChanged

Defines the value of the type property for a pageChanged event, which indicates that a page has changed using the Next/Previous buttons, or the page navigator.