WizardStepType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the types of navigation UI that can be displayed for a step in a Wizard control.
public enum class WizardStepType
public enum WizardStepType
type WizardStepType =
Public Enum WizardStepType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Auto | 0 | The navigation UI that is rendered for the step is determined automatically by the order in which the step is declared. |
Complete | 1 | The step is the last one to appear. No navigation buttons are rendered. |
Finish | 2 | The step is the final data collection step. Finish and Previous buttons are rendered for navigation. |
Start | 3 | The step is the first one to appear. A Next button is rendered but a Previous button is not rendered for this step. |
Step | 4 | The step is any step between the Start and the Finish steps. Previous and Next buttons are rendered for navigation. This step type is useful for overriding the Auto step type. |