TdxCustomWizardControl.ActivePage Property
Specifies the active (displayed) Wizard page.
Declaration
property ActivePage: TdxWizardControlCustomPage read; write;
Property Value
| Type | Description |
|---|---|
| TdxWizardControlCustomPage | The active Wizard page. |
Remarks
You can use the ActivePage property to access the active page or set another page as active. To switch between pages available in the Pages collection, you can also use the ActivePageIndex property.
Note
Only visible pages can be set as active.
Page Navigation Methods
You can call the following procedures to switch between Wizard pages:
- GoToNextPage
- Activates the next wizard page (a page that follows the currently active page).
- GoToPrevPage
- Activates the previous wizard page (a page that precedes the currently active page).
Related Events
Page activation raises the following events:
- OnPageChanging
- Enables you to respond to page activation.
- OnPageChanged
- Enables you to respond to completing page activation.
See Also