The collection of options in a multiple choice survey question.
<checkboxes> <dropdown> <listbox> <radioButtons>
optionitem.name.option
Read/Write
stringarray
This is a list property.
The following displays the label of the first option of checkboxes.foo in a text stimulus:
<text myText>
/ items= ("option = <% checkboxes.foo.option(0) %>")
</text>
The following displays the label of the first option presented in listbox.bar in an instruction page:
<page myPage>
option = <% listbox.bar.option(0) %>
</page>