Generic function
Returns the tab labels of the specified pane.
tab-control-labels tab-control => labels
<tab-control>.
limited(<sequence>, of: <label>.
duim-gadgets
duim-gadgets
Returns the tab labels of tab-control, as a sequence. Each element in labels is an instance of <label>.
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 labels as follows:
tab-control-labels(*tab*);
<tab-control>, page 656
tab-control-pages, page 663