
1 CAPI Reference Entries
choice-selected-items returns the currently selected items in a choice as a list of the items.
choice-selected-items choice
choice-selected-items returns the currently selected items in a choice as a list of the items. Asetf method is provided as a means of setting the currently selected items. In the case ofsingle-selection choices, it is usually easier to use the complementary functionchoice-selected-item, which returns the selected item as its result.
choice-selected-items returned a single item forsingle-selection list panels but this was considered to cause problems and so it was changed to always return a list, and the alternative functionchoice-selected-item was provided for single selection panes.
(setq list (capi:contain
(make-instance
capi:list-panel
:items '(a b c d e)
:interaction :multiple-selection
:selection '(1 3))))
(capi:choice-selected-items list)
(setf (capi:choice-selected-items list) '(a c e)) (capi:choice-selected-items list)
choicechoice-selected-item

Generated with Harlequin WebMaker