The cancel button
The index in the pages array of the active page, or undefined if the wizard is not currently visible
Any additional buttons that should be displayed for all pages of the dialog. If buttons are needed for specific pages they can be added using the customButtons property on each page.
When set to false page titles and descriptions will not be displayed at the top of each wizard page. The default is true.
The done button
The generate script button
Set the informational message shown in the wizard. Hidden when the message is undefined or the text is empty or undefined. The default level is error.
The name used to identify the wizard in telemetry
The next button
Event fired when the wizard's page changes, containing information about the previous page and the new page
The wizard's pages. Pages can be added/removed while the dialog is open by using the addPage and removePage methods
The title of the wizard
Add a page to the wizard at the given index
The page to add
The index in the pages array to add the page at, or undefined to add it at the end
Close the wizard. Does nothing if the wizard is not open.
Open the wizard. Does nothing if the wizard is already open.
Register a callback that will be called when the user tries to navigate by changing pages or clicking done. Only one callback can be registered at once, so each registration call will clear the previous registration.
The callback that gets executed when the user tries to navigate. Return true to allow the navigation to proceed, or false to cancel it.
Register an operation to run in the background when the wizard is done
Operation Information
Remove the page at the given index from the wizard
The index in the pages array to remove
Go to the page at the given index in the pages array.
The index of the page to go to
Generated using TypeDoc
The back button