FORMIMAGE v17
This function and procedure generates the <INPUT>
tag with TYPE="image"
. This tag creates an image field that the user clicks to submit the form.
Syntax
The following is the syntax for HTP:
HTP.FORMIMAGE ( cname IN VARCHAR2 csrc IN VARCHAR2 calign IN VARCHAR2 DEFAULT NULL cattributes IN VARCHAR2 DEFAULT NULL);
The following is the syntax for HTF:
HTF.FORMIMAGE (cname, csrc, calign, cattributes) RETURN VARCHAR2;
Parameters
Parameter | Purpose |
---|---|
cname | The value for the NAME attribute |
csrc | The value for the SRC attribute, which specifies the image file |
calign | The value for the ALIGN attribute |
cattributes | Other attributes to include as is in the tag |
- On this page
- Syntax
- Parameters