Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 922 Bytes

TextBox.setMultiline.rst

File metadata and controls

49 lines (34 loc) · 922 Bytes

TextBox.setMultiLine

Устанавливает значение, определяющее, разрешен ли многострочный текст.

Syntax

textbox.setMultiline(value)

Parameters

Name Type Description
value Boolean Значение, определяющее, разрешен ли многострочный текст.

Returns

Нет

Examples

//js-demo
var textarea = new InfinniUI.TextBox();
textarea.setMultiline(true);
textarea.setLineCount(4);
textarea.setLabelText('textarea');
$elementForExample.append(textarea.render());

See Also