FONT v17
This function and procedure generates the <FONT> and </FONT> tags, which mark text with the specified font characteristics.
Syntax
The following is the syntax for HTP:
HTP.FONTOPEN( ccolor IN VARCHAR2 DEFAULT NULL cface IN VARCHAR2 DEFAULT NULL csize IN VARCHAR2 DEFAULT NULL cattributes IN VARCHAR2 DEFAULT NULL); HTP.fontClose;
The following is the syntax for HTF:
HTF.FONTOPEN(ccolor, cface, csize, cattributes) RETURN VARCHAR2; HTF.FONTCLOSE RETURN VARCHAR2;
Parameters
| Parameter | Purpose |
|---|---|
| ccolor | The value for the COLOR attribute |
| cface | The value for the FACE attribute |
| csize | The value for the SIZE attribute |
| cattributes | Other attributes to include as is in the tag |
- On this page
- Syntax
- Parameters