FORMTEXTAREAOPEN, FORMTEXTAREAOPEN2, and FORMTEXTAREACLOSE v16

These functions and procedures generate the <TEXTAREA> and </TEXTAREA> tags, which create a text area form element. The difference between the two open functions and procedures is that htp.formTextareaOpen2 has the cwrap parameter, which specifies a wrap style.

Syntax

The following is the syntax for HTP:

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

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

HTP.FORMTEXTAREACLOSE;

The following is the syntax for HTF:

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

HTF.FORMTEXTAREAOPEN2(cname, nrows, ncolumns, calign, cwrap, cattributes) RETURN VARCHAR2;
HTF.FORMTEXTAREACLOSE 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