The htp and htf Packages 1-35
1.67 htp.olistOpen, htp.olistClose
This generates the OL and OL tags, which define an ordered list. An ordered list presents a list of numbered items. Numbered items are added using
htp.listItem .
Table 1–66 describes the properties of htp.olistOpen, htp.olistClose.
1.68 htp.para, htp.paragraph
This generates the P tag, which indicates that the text that comes after the tag is to be formatted as a paragraph. htp.paragraph enables you to add attributes to the tag.
Table 1–67 describes the properties of htp.para, htp.paragraph.
Table 1–66 htp.olistOpen, htp.olistClose
Properties Definitions
Syntax: htp.olistOpen
cclear in
varchar2 DEFAULT NULL
cwrap in
varchar2 DEFAULT NULL
cattributes in
varchar2 DEFAULT NULL;
htf.olistOpen cclear, cwrap, cattributes return varchar2; htp.olistClose;
htf.olistClose return varchar2; Parameters:
cclear - the value for the CLEAR attribute. cwrap - the value for the WRAP attribute.
cattributes - other attributes to be included as-is in the tag. Generates:
OL CLEAR=cclear WRAP=cwrap cattributes OL
Table 1–67 htp.para, htp.paragraph
Properties Definitions
Syntax: htp.para;
htf.para return varcahr2; htp.paragraph
calign in varchar2
DEFAULT NULL
cnowrap in
varchar2 DEFAULT NULL
cclear in varchar2
DEFAULT NULL
cattributes in
varchar2 DEFAULT NULL;
htf.paragraph calign, cnowrap, cclear, cattributes return varchar2; Parameters:
calign - the value for the ALIGN attribute. cnowrap - if the value for this parameter is not NULL, the NOWRAP attribute is
added to the tag. cclear - the value for the CLEAR attribute.
cattributes - other attributes to be included as-is in the tag. Generates:
P P ALIGN=calign NOWRAP CLEAR=cclear cattributes
1-36 Oracle Fusion Middleware PLSQL Web Toolkit Reference
1.69 htp.param
This generates the PARAM tag, which specifies parameter values for Java applets. The values can reference HTML variables. To invoke a Java applet from a Web page,
use htp.appletopen to begin the invocation. Use one htp.param
for each desired name-value pair, and use htp.appletclose to end the applet invocation.
Table 1–68 describes the properties of htp.param.
1.70 htp.plaintext