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

service Wizard
Supported Interface
XWizard
Description
provides a framework for implementing a wizard dialog.


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.
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.

 
Top of Page