FRAME v15
This function and procedure generates the <FRAME>
tag, which defines the characteristics of a frame created by a <FRAMESET>
tag.
Syntax
The following is the syntax for HTP:
HTP.FRAME( csrc IN VARCHAR2 cname IN VARCHAR2 DEFAULT NULL cmarginwidth IN VARCHAR2 DEFAULT NULL cmarginheight IN VARCHAR2 DEFAULT NULL cscrolling IN VARCHAR2 DEFAULT NULL cnoresize IN VARCHAR2 DEFAULT NULL cattributes IN VARCHAR2 DEFAULT NULL);
The following is the syntax for HTF:
HTF.FRAME (csrc, cname, cmarginwidth, cmarginheight, cscrolling, cnoresize, cattributes) RETURN VARCHAR2;
Parameters
Parameter | Purpose |
---|---|
csrc | The URL to display in the frame |
cname | The value for the NAME attribute |
cmarginwidth | The value for the MARGINWIDTH attribute |
cmarginheight | The value for the MARGINHEIGHT attribute |
cscrolling | The value for the SCROLLING attribute |
noresize | If the value for this parameter isn't NULL , adds the NORESIZE attribute to the tag |
cattributes | Other attributes to include as is in the tag |
- On this page
- Syntax
- Parameters