Skip to content

pyui.create_text_area

fabian-flassig edited this page Jul 8, 2026 · 2 revisions

Create a multi-line editable text box. Use this instead of create_text_box when the user should enter or edit text that spans several lines.

pyui.create_text_area(dialog, col_spec [,text])
dialog:create_text_area(col_spec [,text])

Parameters

Type Description
dialog dialog_handle Dialog where the control is created
col_spec integer or {first, last} Index of the column or specification of the column-span, where the control is placed.
text string Optional: Initial text-content of the control

Return value

Type Description
control_handle A handle to the newly created control

Note

When the user changes the text in the control, the on_change handler is called.

See also

Control Gallery, set_control_text, set_on_change_handler, create_text_box, create_text_display_area

Clone this wiki locally