The caption corresponding to the selected option on a multiple choice survey question.
<checkboxes> <dropdown> <listbox> <radioButtons>
optionitem.name.selectedCaption
Read Only
string
The selectedCaption property returns the caption of the selected option as defined by the options attribute. If no option is selected, an empty string is returned.
The following displays the value of selected option in a text stimulus:
<text myText>
/ items= ("selectedCaption = <% radioButtons.foo.selectedCaption %>")
</text>
The following displays the value of option in an instruction page:
<page myPage>
selectedcaption = <% listbox.bar.selectedCaption %>
</page>