Next Previous Up Top Contents Index

8.11 DUIM-Gadgets Module

tab-control-pages

Generic function

Summary

Returns the tab pages of the specified pane.

Signature

tab-control-pages tab-control => pages

Arguments

tab-control
An instance of type <tab-control>.

Values

pages
An instance of type limited(<sequence>, of: <page>). Default value: #[].

Library

duim-gadgets

Module

duim-gadgets

Description

Returns the tab pages of pane.

Example

Given the tab control created by the code below:

*tab* := contain
           (make
             (<tab-control>, 
              pages: 
               vector(make(<tab-control-page>,
                           label: "First"),
                      make(<tab-control-page>, 
                           label: "Second"),
                      make(<tab-control-page>, 
                           label: "Third"),
                      make(<tab-control-page>, 
                           label: "Fourth"),
                      make(<tab-control-page>, 
                           label: "Fifth"))));

You can return a list of the pages as follows:

tab-control-pages(*tab*);

See also

<page>, page 623

<tab-control>, page 656

tab-control-current-page, page 658

tab-control-labels, page 661

tab-control-pages-setter, page 664


Functional Developer Library Reference: DUIM - 3 Dec 1998

Next Previous Up Top Contents Index