AREA v15
This function and procedure generates the <AREA>
HTML tag, which defines a client-side image map.
Syntax
The following is the syntax for HTP:
HTP.AREA( ccoords IN VARCHAR2 cshape IN VARCHAR2 DEFAULT NULL chref IN VARCHAR2 DEFAULT NULL cnohref IN VARCHAR2 DEFAULT NULL ctarget IN VARCHAR2 DEFAULT NULL cattributes IN VARCHAR2 DEFAULT NULL);
The following is the syntax for HTF:
HTF.AREA(ccoords, cshape, chref, cnohref, ctarget, cattributes) RETURN VARCHAR2;
Parameters
Parameter | Purpose |
---|---|
ccoords | The value for the COORDS attribute |
cshape | The value for the SHAPE attribute |
chref | The value for the HREF attribute |
cnohref | If the value for this parameter isn't NULL , adds the NOHREF attribute to the tag |
ctarget | The value for the TARGET attribute |
cattributes | Other attributes to include as is in the tag |
- On this page
- Syntax
- Parameters