Concept Framework 1.0 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: Thu Oct 15 20:01:58 2009 GMT(c)2009 RadGs Software