SAS logoSAS® Mobile Investigator API
    Preparing search index...

    Interface Wizard

    interface Wizard {
        back(): void;
        cancel(): void;
        finish(): void;
        next<T extends Record<string, any>>(stepId: string, properties?: T): void;
        setTitle(title: string): void;
    }
    Index

    Methods

    • Renders the previous wizard step.

      Returns void

    • Cancels the wizard.

      Returns void

    • Finishes the wizard.

      Returns void

    • Renders the next wizard step.

      Type Parameters

      Parameters

      • stepId: string

        The step element ID to render.

      • Optionalproperties: T

        The properties to set on the step element.

      Returns void

    • Sets the title of the wizard header.

      Parameters

      • title: string

        The title.

      Returns void