The value assigned to each response on the likert scale.
<likert>
likert.name.anchorValue
Read/Write
stringarray
This is an list property. The anchorValue is what is written to the datafile when a particular likert response is given.
The following displays the value of the first anchor of a likert scale:
<text myText>
/ items= ("correct = <% likert.somelikert.anchorValue(0) %>")
</text>
The following displays value of the last anchor of a seven point likert scale:
<page myPage>
correct = <% likert.somelikert.anchorValue(6) %>
</page>