Save This Page
Home » openjdk-7 » org.w3c » dom » html » [javadoc | source]
org.w3c.dom.html
public interface: HTMLFrameElement [javadoc | source]

All Implemented Interfaces:
    HTMLElement

Create a frame. See the FRAME element definition in HTML 4.0.

See also the Document Object Model (DOM) Level 2 Specification.
Method from org.w3c.dom.html.HTMLFrameElement Summary:
getContentDocument,   getFrameBorder,   getLongDesc,   getMarginHeight,   getMarginWidth,   getName,   getNoResize,   getScrolling,   getSrc,   setFrameBorder,   setLongDesc,   setMarginHeight,   setMarginWidth,   setName,   setNoResize,   setScrolling,   setSrc
Method from org.w3c.dom.html.HTMLFrameElement Detail:
 public Document getContentDocument()
    The document this frame contains, if there is any and it is available, or null otherwise.
 public String getFrameBorder()
    Request frame borders. See the frameborder attribute definition in HTML 4.0.
 public String getLongDesc()
    URI designating a long description of this image or frame. See the longdesc attribute definition in HTML 4.0.
 public String getMarginHeight()
    Frame margin height, in pixels. See the marginheight attribute definition in HTML 4.0.
 public String getMarginWidth()
    Frame margin width, in pixels. See the marginwidth attribute definition in HTML 4.0.
 public String getName()
    The frame name (object of the target attribute). See the name attribute definition in HTML 4.0.
 public boolean getNoResize()
    When true, forbid user from resizing frame. See the noresize attribute definition in HTML 4.0.
 public String getScrolling()
    Specify whether or not the frame should have scrollbars. See the scrolling attribute definition in HTML 4.0.
 public String getSrc()
    A URI designating the initial frame contents. See the src attribute definition in HTML 4.0.
 public  void setFrameBorder(String frameBorder)
 public  void setLongDesc(String longDesc)
 public  void setMarginHeight(String marginHeight)
 public  void setMarginWidth(String marginWidth)
 public  void setName(String name)
 public  void setNoResize(boolean noResize)
 public  void setScrolling(String scrolling)
 public  void setSrc(String src)