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.
-
getFrameBorder()
- Request frame borders.
-
getLongDesc()
- URI designating a long description of this image or frame.
-
getMarginHeight()
- Frame margin height, in pixels.
-
getMarginWidth()
- Frame margin width, in pixels.
-
getName()
- The frame name (object of the target attribute).
-
getNoResize()
- When true, forbid user from resizing frame.
-
getScrolling()
- Specify whether or not the frame should have scrollbars.
-
getSrc()
- A URI designating the initial frame contents.
-
setFrameBorder(String)
-
-
setLongDesc(String)
-
-
setMarginHeight(String)
-
-
setMarginWidth(String)
-
-
setName(String)
-
-
setNoResize(boolean)
-
-
setScrolling(String)
-
-
setSrc(String)
-
getFrameBorder
public abstract String getFrameBorder()
- Request frame borders. See the frameborder attribute definition in HTML 4.0.
setFrameBorder
public abstract void setFrameBorder(String frameBorder)
getLongDesc
public abstract String getLongDesc()
- URI designating a long description of this image or frame. See the longdesc attribute definition in HTML 4.0.
setLongDesc
public abstract void setLongDesc(String longDesc)
getMarginHeight
public abstract String getMarginHeight()
- Frame margin height, in pixels. See the marginheight attribute definition in HTML 4.0.
setMarginHeight
public abstract void setMarginHeight(String marginHeight)
getMarginWidth
public abstract String getMarginWidth()
- Frame margin width, in pixels. See the marginwidth attribute definition in HTML 4.0.
setMarginWidth
public abstract void setMarginWidth(String marginWidth)
getName
public abstract String getName()
- The frame name (object of the target attribute). See the name attribute definition in HTML 4.0.
setName
public abstract void setName(String name)
getNoResize
public abstract boolean getNoResize()
- When true, forbid user from resizing frame. See the noresize attribute definition in HTML 4.0.
setNoResize
public abstract void setNoResize(boolean noResize)
getScrolling
public abstract String getScrolling()
- Specify whether or not the frame should have scrollbars. See the scrolling attribute definition in HTML 4.0.
setScrolling
public abstract void setScrolling(String scrolling)
getSrc
public abstract String getSrc()
- A URI designating the initial frame contents. See the src attribute definition in HTML 4.0.
setSrc
public abstract void setSrc(String src)
All Packages Class Hierarchy This Package Previous Next Index