Wizard.WizardSteps Property
Assembly: System.Web (in system.web.dll)
/** @property */ public WizardStepCollection get_WizardSteps ()
public function get WizardSteps () : WizardStepCollection
Property Value
A WizardStepCollection representing all the WizardStepBase objects defined for the Wizard.The WizardSteps property returns a collection of WizardStepBase objects that make up the Wizard control. You can use the WizardSteps collection to access the WizardStepBase objects that are contained in the Wizard control programmatically. Use the Add, Remove, Clear, and Insert methods to manipulate the WizardStepBase objects in the collection programmatically.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins Overview.
The following code example demonstrates how to create a Wizard control programmatically and how to use the Add method to add WizardStepBase objects to the WizardSteps collection.
<%@ page language="C#"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> // Programmatically create a Wizard control and dynamically // add WizardStep objects to it. void Page_Load(object sender, EventArgs e) { Wizard WizardControl = new Wizard(); // Create some steps for the wizard and add them // to the Wizard control. for (int i = 0; i <= 5; i++) { WizardStepBase newStep = new WizardStep(); newStep.ID = "Step" + (i + 1).ToString(); WizardControl.WizardSteps.Add(newStep); } // Display the wizard on the page. PlaceHolder1.Controls.Add(WizardControl); } </script> <html> <body> <form id="Form1" runat="server"> <h3>WizardSteps Example</h3> <asp:PlaceHolder id="PlaceHolder1" runat="server" /> </form> </body> </html>
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.