:: com :: sun :: star :: ui :: dialogs ::

service Wizard
Supported Interface
XWizard


Constructors' Summary
createSinglePathWizard creates a wizard with a single execution path  
createMultiplePathsWizard creates a wizard with a multiple possible execution paths  
Constructors' Details
createSinglePathWizard
createSinglePathWizard( [in] sequence< short >  PageIds,
[in] XWizardController  Controller )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
creates a wizard with a single execution path
Parameter PageIds
the IDs of the pages which constitute the execution path. IDs must be in ascending order.
Parameter Controller
the wizard controller.
createMultiplePathsWizard
createMultiplePathsWizard( [in] sequence< sequence< short > >  PageIds,
[in] XWizardController  Controller )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
creates a wizard with a multiple possible execution paths
Parameter PageIds
the IDs of the pages which constitute the execution paths. IDs in each path must be in ascending order.
Parameter Controller
the wizard controller.

 
Top of Page