JVCL Help:TJvWizardInteriorPage

From Project JEDI Wiki
Jump to navigationJump to search
JEDI Visual Component Library Help

Search in JVCL Help

 
Search in all projects
 

Class Hierarchy

TJvWizardCustomPage
TJvWizardInteriorPage
run\JvWizard.pas


Summary

Wizard page that is used as interior pages.

run\JvWizard.pas


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;

run\JvWizard.pas


About

Navigation

run\JvWizard.pas



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