HEADER v15
This function and procedure generates heading tags (<H1>
to <H6>
) and their corresponding closing tags (</H1>
to </H6>
).
Syntax
The following is the syntax for HTP:
HTP.HEADER ( nsize IN INTEGER cheader IN VARCHAR2 calign IN VARCHAR2 DEFAULT NULL cnowrap IN VARCHAR2 DEFAULT NULL cclear IN VARCHAR2 DEFAULT NULL cattributes IN VARCHAR2 DEFAULT NULL);
The following is the syntax for HTF:
HTF.HEADER (nsize, cheader, calign, cnowrap, cclear, cattributes) RETURN VARCHAR2;
Parameters
Parameter | Purpose |
---|---|
nsize | The heading level, set as an integer between 1 and 6 |
calign | The value for the ALIGN attribute |
cheader | The text to display in the heading |
cnowrap | The value for the NOWRAP attribute |
cclear | The value for the CLEAR attribute |
cattributes | Other attributes to include as is in the tag |
- On this page
- Syntax
- Parameters