EditMulti

<< Click to Display Table of Contents >>

Navigation:  IWML > Tags > Controls >

EditMulti

The EditMulti control allows users to input or display multiple lines of text in a single resizable text area.

 

It supports optional word wrapping, read-only mode, automatic height adjustment, and the use of fixed-width fonts for better alignment. You can programmatically prefill the control with multiple lines using the Lines property.

 

Use this control when you need to edit or present structured multiline content.

 

Syntax

 

EditMulti[:Name] [Default Text]

 

Name — identifier used to reference the control in your logic (this.Name).

Default Text — optional value; can be used to set initial content (first line).

 

Properties

 

WordWrap – enables or disables automatic wrapping of long lines (true by default).

ReadOnly – disables editing while still allowing users to select and copy text.

AutoHeight – automatically adjusts the height of the text area to fit content.

FixedWidthFont – uses a monospace font, useful for displaying aligned or technical content.

LineHeight – controls vertical spacing between lines.

Lines – list of text lines to show inside the editor.

 

Try It

 

EditMulti:Editor

 WordWrap: false

 ReadOnly: true

 AutoHeight: true

 FixedWidthFont: true

 LineHeight: 20px

 Lines:

   First line of text

   Second line

   And a third one

 ]

]