The textbox element defines a survey item in which respondents enter free text.
textbox.name.defaultResponse
textbox.name.maxChars
textbox.name.maxValue
textbox.name.minChars
textbox.name.minValue
textbox.name.caption
textbox.name.fontHeight
textbox.name.height
textbox.name.heightPct
textbox.name.heightPx
textbox.name.hPosition
textbox.name.required
textbox.name.response
textbox.name.responseFontHeight
textbox.name.responseText
textbox.name.subcaption
textbox.name.subcaptionFontHeight
textbox.name.vPosition
textbox.name.width
textbox.name.widthPct
textbox.name.widthPx
textbox.name.x
textbox.name.xPct
textbox.name.xPx
textbox.name.y
textbox.name.yPct
textbox.name.yPx
textbox.name.name
textbox.name.typeName
None.
The textbox element has a powerful set of features for validating and constraining the range of permissible input. See the mask attribute for details.
The following textbox item asks the respondent to enter their age, constraining the response to be a positive integer between 18 and 120.
<textbox q1>
/ caption="Please enter your age."
/ mask=positiveinteger
/ range = (18, 120)
</textbox>