FORMTEXTAREA and FORMTEXTAREA2 v16

These functions and procedures generate the <TEXTAREA> tag, which creates a text field that has no predefined text in the text area. This field allows the user to enter several lines of text.

Syntax

The following is the syntax for HTP:

HTP.FORMTEXTAREA (
   cname          IN       VARCHAR2
   nrows          IN       INTEGER
   ncolumns       IN       INTEGER
   calign         IN       VARCHAR2   DEFAULT NULL
   cattributes    IN       VARCHAR2   DEFAULT NULL);

HTP.FORMTEXTAREA2 (
   cname          IN       VARCHAR2
   nrows          IN       INTEGER
   ncolumns       IN       INTEGER
   calign         IN       VARCHAR2   DEFAULT NULL
   cwrap          IN       VARCHAR2   DEFAULT NULL
   cattributes    IN       varchar2   DEFAULT NULL);

The following is the syntax for HTF:

HTF.FORMTEXTAREA (cname, nrows, ncolumns, calign, cattributes) RETURN VARCHAR2;

HTF.FORMTEXTAREA2 (cname, nrows, ncolumns, calign, cwrap, cattributes) RETURN VARCHAR2;

Parameters

ParameterPurpose
cnameThe value for the NAME attribute
nrowsThe integer value for the ROWS attribute
ncolumnsThe integer value for the COLS attribute
calignThe value for the ALIGN attribute
cwrapThe value for the WRAP attribute
cattributesOther attributes to include as is in the tag