APPLETOPEN and APPLETCLOSE v15
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
Parameter | Purpose |
---|---|
ccode | The value for the CODE attribute, which specifies the name of the applet class |
cheight | The value for the HEIGHT attribute |
cwidth | The value for the WIDTH attribute |
- On this page
- Syntax
- Parameters