The minChars attribute determines the minimum number of characters allowed for a response.
<textbox>
or
/ minChars = expressionName | Type | Description |
---|---|---|
integer | integer | An integer specifying a the minimum number of characters allowed. |
expression | value | An expression resolving to an integer specifying a the minimum number of characters allowed. |
The default setting is 0 characters.
The following allows subjects to enter responses of 2 or more characters.
<textbox question>
/ caption="Enter your age"
/ minChars = 2
</textbox>