An array of boolean values indicating whether options in a multiple choice survey question are selected.
<checkboxes> <dropdown> <listbox> <radioButtons>
optionitem.name.selected
Read Only
array
This property returns true if the option at the specified index was selected, or false if it was not selected.
The following displays whether the first item in a checkbox question was selected:
<text myText>
/ items= ("selected = <% checkboxes.foo.selected[0] %>")
</text>
The following displays whether the second item in a listbox question was selected:
<page myPage>
selected = <% listbox.bar.selected[1] %>
</page>