JVCL Help:TJvWizardInteriorPage
From Project JEDI Wiki
Jump to navigationJump to searchJVCL Help: TJvWizardInteriorPage Class
[+] JvWizard.pas Classes
[+] TJvWizardInteriorPage Methods
Search in JVCL Help
Search in all projectsClass Hierarchy
TJvWizardCustomPage
TJvWizardInteriorPage
run\JvWizard.pas
Summary
Wizard page that is used as interior pages.
Pascal
run\JvWizard.pas
TJvWizardInteriorPage = class(TJvWizardCustomPage);
Description
To add an interior page at design time, right click the TJvWizard and click on "New Interior Page". To add an interior page at run time, use code similar to the following (JvWizard1 is a TJvWizard on the form): ...
var
InteriorPage:TJvWizardInteriorPage;
begin
InteriorPage := TJvWizardInteriorPage.Create(self); // self references the form here
InteriorPage.Wizard := JvWizard1; // add the page to the wizard
InteriorPage.PageIndex := 1; // move the page so it is the second page in the wizard end;
About
Contribute to this help topic
This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page