Generic function
Returns the tab pages of the specified pane.
tab-control-pages tab-control => pages
<tab-control>.
limited(<sequence>, of: <page>). Default value: #[].
duim-gadgets
duim-gadgets
Returns the tab pages of pane.
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*);
<tab-control>, page 656
tab-control-current-page, page 658
tab-control-labels, page 661
tab-control-pages-setter, page 664