1-10 Oracle Fusion Middleware PLSQL Web Toolkit Reference
1.13 htp.center
This generates the CENTER and CENTER tags, which center a section of text within a Web page.
Table 1–12 describes the properties of htp.center.
1.14 htp.centerOpen, htp.centerClose
This generates the CENTER and CENTER tags, which mark the section of text to center.
Table 1–13 describes the properties of htp.centerOpen, htp.centerClose.
1.15 htp.cite
This generates the CITE and CITE tags, which direct the browser to render the text as citation.
Table 1–14 describes the properties of htp.cite.
Table 1–11 htp.bold
Properties Definitions
Syntax: htp.bold
ctext in varchar2
cattributes in
varchar2 DEFAULT NULL;
htf.bold ctext, cattributes return varchar2; Parameters:
ctext - the text that goes between the tags. cattributes - other attributes to be included as-is in the tag.
Generates: B cattributesctextB
Table 1–12 htp.center
Properties Definitions
Syntax: htp.centerctext in varchar2;
htf.centerctext in varchar2 return varchar2; Parameters:
ctext - the text to center. Generates:
CENTERctextCENTER
Table 1–13 htp.centerOpen, htp.centerClose
Properties Definitions
Syntax: htp.centerOpen;
htf.centerOpen return varchar2; htp.centerClose;
htf.centerClose return varchar2; Parameters:
None Generates:
CENTER CENTER
The htp and htf Packages 1-11
1.16 htp.code
This generates the CODE and CODE tags, which direct the browser to render the text in monospace font.
Table 1–15 describes the properties of htp.code.
1.17 htp.comment
This generates the comment tags. Table 1–16
describes the properties of htp.comment.
1.18 htp.dfn
This generates the DFN and DFN tags, which direct the browser to render the text in italics.
Table 1–17 describes the properties of htp.dfn.
Table 1–14 htp.cite
Properties Definitions
Syntax: htp.cite
ctext in varchar2
cattributes in
varchar2 DEFAULT NULL;
htf.cite ctext, cattributes return varchar2; Parameters:
ctext - the text to render as citation. cattributes - other attributes to be included as-is in the tag.
Generates: CITE cattributesctextCITE
Table 1–15 htp.code
Properties Definitions
Syntax: htp.code
ctext in varchar2
cattributes in
varchar2 DEFAULT NULL;
htf.code ctext, cattributes return varchar2; Parameters:
ctext - the text to render as code. cattributes - other attributes to be included as-is in the tag.
Generates: CODE cattributesctextCODE
Table 1–16 htp.comment
Properties Definitions
Syntax: htp.comment ctext in varchar2;
htf.comment ctext in varchar2 return varchar2; Parameters:
ctext - the comment. Generates:
-- ctext --
1-12 Oracle Fusion Middleware PLSQL Web Toolkit Reference
1.19 htp.dirlistOpen, htp.dirlistClose