method InputMemo(ControlName: String, Prompt: String[, MemoHeight: Number, MemoWidth: Number][, Maxlength: Number])
Define a memo control on a scripted form that allows input of arbitrary text. You can optionally set the control height and width.
InputMemo method syntax has these named arguments:
Parameter |
Description |
|---|---|
Control Name |
Required. Name of the control. Must be a valid MaxBasic identifier. |
Prompt |
Required. Prompt text to display to left of the control. |
Memo Height |
Optional. The height of the Memo control. |
Memo Width |
Optional. The width of the Memo control. |
Max Length |
Optional. Set the maximum number of characters that can be entered in the memo. |
See also MaxBasic InputMemo function.