Method Html3():MLE() Professional

Create HTML code for a multi-line entry field.

Syntax
:MLE( <cTitle>       , ;
      <cName>        , ;
      [<cValue>]     , ;
      [<cOptions>] ) --> NIL
Parameters
<cTitle>
The character string <cTitle> is displayed on top of the entry field.
<cName>
The parameter <cName> becomes the value of the nameattribute.
<cValue>
The optional parameter <cValue> becomes the value of the valueattribute.
<cOptions>
The optional parameter <cOptions> is a character string that is inserted into the HTML <input> tag.
Return
Description

The method creates the HTML code for a multiple-line entry field. Use the ROWS= and COLS= attributes in <cOptions> to limit the size of the control.

HTML output:

cTitle<br> 
<textarea name="cName" value="[cValue]" [cOptions]> 
</textarea> 

Feedback

If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.