Open abstract instantiable class
The class of multiple line text editors.
columns: false-or(<integer>). Default value: #f.
lines: false-or(<integer>). Default value: #f.
scroll-bars: one-of(#f, #"none", #"horizontal", #"vertical", #"both", #"dynamic"). Default value: #"both".
duim-gadgets
duim-gadgets
The class of multiple line text editors.
|
The columns: and lines: init-keywords specify the number of columns and lines of characters visible in the text editor, respectively.
The scroll-bars: init-keyword specifies whether the text editor has scroll bars or not.
Internally, this class maps into the multi-line edit control Windows control.
To constrain the number of lines and columns when an editor is first displayed:
*editor* := contain(make(<text-editor>,
lines: 20, columns: 80));To make a text editor that is fixed at 10 lines high:
make(<text-editor>, lines: 10, fixed-height?: #t);
<text-field>, page 674