TABLEOPEN and TABLECLOSE v16

This function and procedure generates the <TABLE> and </TABLE> tags, which define an HTML table.

Syntax

The following is the syntax for HTP:

HTP.TABLEOPEN (
   cborder        IN       VARCHAR2   DEFAULT NULL
   calign         IN       VARCHAR2   DEFAULT NULL
   cnowrap        IN       VARCHAR2   DEFAULT NULL
   cclear         IN       VARCHAR2   DEFAULT NULL
   cattributes    IN       VARCHAR2   DEFAULT NULL);

HTP.TABLECLOSE;

The following is the syntax for HTF:

HTF.TABLEOPEN (cborder, calign, cnowrap, cclear, cattributes) RETURN VARCHAR2;

HTF.TABLECLOSE RETURN VARCHAR2;

Parameters

ParameterPurpose
cborderThe value for the BORDER attribute
calignThe value for the ALIGN attribute
cnowrapIf the value of this parameter isn't NULL, adds the NOWRAP attribute to the tag
cclearThe value for the CLEAR attribute
cattributesOther attributes to include as is in the tag