TdxCustomWizardControl.ActivePage Property
Makes a specified wizard page active (shown) within the wizard control.
Declaration
property ActivePage: TdxWizardControlCustomPage read; write;
Property Value
Type |
---|
TdxWizardControlCustomPage |
Remarks
A wizard page can be activated in a number of ways. End-users can sequentially activate pages using navigation buttons (Next or Back). You can programmatically make a specific wizard page active either by calling its Activate method or via a wizard control’s ActivePage and ActivePageIndex properties. In addition, you can call wizard control methods to sequentially activate pages, emulating end-user navigation with buttons.
The wizard control does the following on page activation:
Fires the OnPageChanging event;
Renders the page being activated, adjusts wizard control size in AutoSize mode, and starts page transition animation;
Fires the OnPageChanged event once the animation completes.
Note
Only pages whose PageVisible property is set to True can be activated.