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