WizardStepCollection Class
.NET Framework 3.0
Represents a collection of WizardStepBase-derived objects in a control that acts as a wizard. This class cannot be inherited.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The WizardStepCollection class is used to store and manage a collection of WizardStepBase-derived objects in a control that acts as a wizard, such as the CreateUserWizard control or the Wizard control. For example, the Wizard control uses the WizardStepCollection class for its WizardSteps property.
There are multiple ways you can access the WizardStepBase-derived objects in the WizardStepCollection:
-
Use the Item property to directly access a WizardStepBase-derived object at a specific zero-based index.
-
Use the GetEnumerator method to create an enumerator that can be used to iterate through the collection.
-
Use the CopyTo method to copy the contents of the WizardStepCollection collection into an Array object.
| Topic | Location |
|---|---|
| Walkthrough: Creating a Basic ASP.NET Wizard Control | Building ASP .NET Web Applications in Visual Studio |
| Walkthrough: Advanced Use of the ASP.NET Wizard Control | Building ASP .NET Web Applications in Visual Studio |
- AspNetHostingPermission for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.
Community Additions
ADD
Show: