CreateUserWizardStep.StepType Property

Definition

Gets or sets the type of user interface (UI) to display for the CreateUserWizardStep step of a CreateUserWizard control.

public:
 virtual property System::Web::UI::WebControls::WizardStepType StepType { System::Web::UI::WebControls::WizardStepType get(); void set(System::Web::UI::WebControls::WizardStepType value); };
[System.ComponentModel.Browsable(false)]
[System.Web.UI.Themeable(false)]
public override System.Web.UI.WebControls.WizardStepType StepType { get; set; }
[<System.ComponentModel.Browsable(false)>]
[<System.Web.UI.Themeable(false)>]
member this.StepType : System.Web.UI.WebControls.WizardStepType with get, set
Public Overrides Property StepType As WizardStepType

Property Value

The Auto enumeration value of the WizardStepType enumeration.

Attributes

Exceptions

An attempt was made to set the StepType property to a value other than the WizardStepType.Auto enumeration value.

Remarks

The StepType property specifies the navigation options to display for the user-account-creation step of the CreateUserWizard control.

The StepType property determines which of the Wizard control's navigation buttons are displayed on the CreateUserWizardStep control. For more information, see the WizardStepBase.StepType property.

Caution

If you attempt to change the StepType property to any value other than the Auto value of the WizardStepType enumeration, an InvalidOperationException will be thrown.

This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins.

Applies to

See also