All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLFrameElement

public interface HTMLFrameElement
extends HTMLElement
Create a frame. See the FRAME element definition in HTML 4.0.


Method Index

 o getFrameBorder()
Request frame borders.
 o getLongDesc()
URI designating a long description of this image or frame.
 o getMarginHeight()
Frame margin height, in pixels.
 o getMarginWidth()
Frame margin width, in pixels.
 o getName()
The frame name (object of the target attribute).
 o getNoResize()
When true, forbid user from resizing frame.
 o getScrolling()
Specify whether or not the frame should have scrollbars.
 o getSrc()
A URI designating the initial frame contents.
 o setFrameBorder(String)
 o setLongDesc(String)
 o setMarginHeight(String)
 o setMarginWidth(String)
 o setName(String)
 o setNoResize(boolean)
 o setScrolling(String)
 o setSrc(String)

Methods

 o getFrameBorder
 public abstract String getFrameBorder()
Request frame borders. See the frameborder attribute definition in HTML 4.0.

 o setFrameBorder
 public abstract void setFrameBorder(String frameBorder)
 o getLongDesc
 public abstract String getLongDesc()
URI designating a long description of this image or frame. See the longdesc attribute definition in HTML 4.0.

 o setLongDesc
 public abstract void setLongDesc(String longDesc)
 o getMarginHeight
 public abstract String getMarginHeight()
Frame margin height, in pixels. See the marginheight attribute definition in HTML 4.0.

 o setMarginHeight
 public abstract void setMarginHeight(String marginHeight)
 o getMarginWidth
 public abstract String getMarginWidth()
Frame margin width, in pixels. See the marginwidth attribute definition in HTML 4.0.

 o setMarginWidth
 public abstract void setMarginWidth(String marginWidth)
 o getName
 public abstract String getName()
The frame name (object of the target attribute). See the name attribute definition in HTML 4.0.

 o setName
 public abstract void setName(String name)
 o getNoResize
 public abstract boolean getNoResize()
When true, forbid user from resizing frame. See the noresize attribute definition in HTML 4.0.

 o setNoResize
 public abstract void setNoResize(boolean noResize)
 o getScrolling
 public abstract String getScrolling()
Specify whether or not the frame should have scrollbars. See the scrolling attribute definition in HTML 4.0.

 o setScrolling
 public abstract void setScrolling(String scrolling)
 o getSrc
 public abstract String getSrc()
A URI designating the initial frame contents. See the src attribute definition in HTML 4.0.

 o setSrc
 public abstract void setSrc(String src)

All Packages  Class Hierarchy  This Package  Previous  Next  Index