htp.strong htp.style htp.sub htp.sup htp.tableCaption

1-40 Oracle Fusion Middleware PLSQL Web Toolkit Reference

1.79 htp.strong

This generates the STRONG and STRONG tags, which direct the browser to render the text they surround in bold. Table 1–78 describes the properties of htp.strong.

1.80 htp.style

This generates the STYLE and STYLE tags, which include a style sheet in your Web page. Style sheets are a feature of HTML 3.2. You can get more information about style sheets at http:www.w3.org. This feature is not compatible with browsers that support only HTML versions 2.0 or earlier. Such browsers will ignore this tag. Table 1–79 describes the properties of htp.style.

1.81 htp.sub

This generates the SUB and SUB tags, which direct the browser to render the text they surround as subscript. Table 1–80 describes the properties of htp.sub. Table 1–77 htp.strike Properties Definitions Syntax: htp.strike ctext in varchar2 cattributes in varchar2 DEFAULT NULL; htf.strikectext, cattributes return varchar2; Parameters: ctext - the text to be rendered in strikethrough type. cattributes - other attributes to be included as-is in the tag. Generates: STRIKE cattributesctextSTRIKE Table 1–78 htp.strong Properties Definitions Syntax: htp.strong ctext in varchar2 cattributes in varchar2 DEFAULT NULL; htf.strong ctext, cattributes return varchar2; Parameters: ctext - the text to be emphasized. cattributes - other attributes to be included as-is in the tag. Generates: STRONG cattributesctextSTRONG Table 1–79 htp.style Properties Definitions Syntax: htp.stylecstyle in varchar2; htf.stylecstyle return varchar2; Parameters: cstyle - the style information to include. Generates: STYLEcstyleSTYLE The htp and htf Packages 1-41

1.82 htp.sup

This generates the SUP and SUP tags, which direct the browser to render the text they surround as superscript. Table 1–81 describes the properties of htp.sup.

1.83 htp.tableCaption

This generates the CAPTION and CAPTION tags, which place a caption in an HTML table. Table 1–82 describes the properties of htp.tableCaption. Table 1–80 htp.sub Properties Definitions Syntax: htp.sub ctext in varchar2 calign in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL; htf.subctext, calign, cattributes return varchar2; Parameters: ctext - the text to render in subscript. calign - the value for the ALIGN attribute. cattributes - other attributes to be included as-is in the tag. Generates: SUB ALIGN=calign cattributesctextSUB Table 1–81 htp.sup Properties Definitions Syntax: htp.sup ctext in varchar2 calign in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL; htf.supctext, calign, cattributes return varchar2; Parameters: ctext - the text to render in subscript. calign - the value for the ALIGN attribute. cattributes - other attributes to be included as-is in the tag. Generates: SUP ALIGN=calign cattributesctextSUP Table 1–82 htp.tableCaption Properties Definitions Syntax: htp.tableCaption ccaption in varchar2 calign in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL; htf.tableCaption ccaption, calign, cattributes return varchar2; Parameters: ccaption - the text for the caption. calign - the value for the ALIGN attribute. cattributes - other attributes to be included as-is in the tag. Generates: CAPTION ALIGN=calign cattributesccaptionCAPTION 1-42 Oracle Fusion Middleware PLSQL Web Toolkit Reference

1.84 htp.tableData