APPLETOPEN and APPLETCLOSE v16

htp.appletopen generates the <APPLET> HTML tag, which invokes a Java applet. Close the applet with htp.appletclose, which generates the </APPLET> HTML tag.

Syntax

The following is the syntax for HTP:

HTP.APPLETOPEN(
   ccode          IN       VARCHAR2
   cheight        IN       NUMBER
   cwidth         IN       NUMBER
   cattributes    IN       VARCHAR2   DEFAULT NULL);


HTP.APPLETCLOSE;

The following is the syntax for HTF:

HTF.APPLETOPEN(ccode, cheight, cwidth, cattributes) RETURN VARCHAR2;

HTF.APPLETCLOSE RETURN VARCHAR2;

Parameters

ParameterPurpose
ccodeThe value for the CODE attribute, which specifies the name of the applet class
cheightThe value for the HEIGHT attribute
cwidthThe value for the WIDTH attribute