WizardStepBase.StepType Property
Assembly: System.Web (in system.web.dll)
public: virtual property WizardStepType StepType { WizardStepType get (); void set (WizardStepType value); }
/** @property */ public WizardStepType get_StepType () /** @property */ public void set_StepType (WizardStepType value)
public function get StepType () : WizardStepType public function set StepType (value : WizardStepType)
Property Value
One of the WizardStepType enumeration values. The default value is WizardStepType.Auto.Use the StepType property to specify the type of navigation buttons to display for a step in a Wizard control. If you specify a value for this property, any steps marked as Complete displays in a disabled state in the sidebar.
If you do not specify a value for this property, the default is WizardStepType.Auto.
The following table lists the available settings for the StepType property and the resulting behavior of the step:
WizardStepType.AutoThe navigation UI that is rendered for the step is determined by the order in which the step is declared.
WizardStepType.CompleteThe step is the last one to appear. No navigation buttons are rendered.
WizardStepType.FinishThe step is the final data collection step. The Finish and Previous buttons are rendered for navigation.
WizardStepType.StartThe step is the first one to appear. A Previous button is not rendered.
WizardStepType.StepThe step is any step between the Start and the Finish step. Previous and Next buttons are rendered for navigation. This step type is useful for overriding the Auto step type.
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.