MULTILINEEDIT

Definition

MULTILINEEDIT [id]
{
  [Flags]
}

Description

Multi-line edit fields are used for text input on several lines, just like the expression editor. Use GeDialog::GetString() and GeDialog::SetString() to access the text.

Flags

See Dialog Resource for a description of the common flags.

[LAYOUTFLAGS]Layout flags.
[SIZE]Manual size.
[NAME]Name.
MONOSPACEDMonospaced font.
SYNTAXCOLORSyntax highlighting.
STATUSBARDisplays a statusbar with the cursor position.

Example

MULTILINEEDIT IDC_TEXT
{
  MONOSPACED;
  SYNTAXCOLOR;
  STATUSBAR;
  SCALE_H;SCALE_V; SIZE 600,30;
}

Further Reading