WizardPage.Pages Property
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.
Gets the IList interface that contains the collection of pages in the wizard.
protected:
property System::Collections::IList ^ Pages { System::Collections::IList ^ get(); };
protected System.Collections.IList Pages { get; }
member this.Pages : System.Collections.IList
Protected ReadOnly Property Pages As IList
Property Value
An IList interface that contains the list of pages in the wizard form.
Remarks
Returning a collection of wizard pages enables you to handle, search, and sort the wizard pages.
The returned collection provides the functionality of the System.Collections.IList class and exposes all the elements of the collection. The interface that the Pages property gets can be cast to any type that implements the System.Collections.IList interface.
This property enables you to create a custom Pages property.