wicket.markup.html.form.TextArea
[back to the reference]A TextArea is like a TextField, but is used for multiple rows of text.
Behind the Scenes
Example HTML
<textarea wicket:id="text" rows="6" cols="20">Input comes here</textarea>
Example Code
// add a text area component that uses the model object's 'text' property.
form.add(new TextArea("text"));