Concept Framework 2.2 documentation Contents | Index

RNotebook.Pages

Name Type Access Version Deprecated
Pages property public version 1.0 no

Prototype:
Read property Pages [array of __RNOTEBOOKPages]


Description:
Provides access to the notebook children. This is an array containing __RNOTEBOOKPages in order to provide access to the tabs of the notebook. The number of the pages in the notebook can be obtaining through the length operator: var pages_no=length Notebook.Pages.

Example:
	var Notebook=new RNotebook(owner);
	// adding a RVBox the the RNotebook
	var vbox=new RVBox(Notebook);
	vbox.Show();
	// this will have the 0 index 
	Notebook.Pages[0].Caption="First page !";
	Notebook.Show();

Returns:
Returns an array of __RNOTEBOOKPages.

Documented by Eduard Suica, generation time: Sun Jan 27 18:15:10 2013 GMT(c)2013 Devronium Applications