All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLIFrameElement

public interface HTMLIFrameElement
extends HTMLElement
Inline subwindows. See the IFRAME element definition in HTML 4.0.


Method Index

 o getAlign()
Aligns this object (vertically or horizontally) with respect to its surrounding text.
 o getFrameBorder()
Request frame borders.
 o getHeight()
Frame height.
 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 getScrolling()
Specify whether or not the frame should have scrollbars.
 o getSrc()
A URI designating the initial frame contents.
 o getWidth()
Frame width.
 o setAlign(String)
 o setFrameBorder(String)
 o setHeight(String)
 o setLongDesc(String)
 o setMarginHeight(String)
 o setMarginWidth(String)
 o setName(String)
 o setScrolling(String)
 o setSrc(String)
 o setWidth(String)

Methods

 o getAlign
 public abstract String getAlign()
Aligns this object (vertically or horizontally) with respect to its surrounding text. See the align attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setAlign
 public abstract void setAlign(String align)
 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 getHeight
 public abstract String getHeight()
Frame height. See the height attribute definition in HTML 4.0.

 o setHeight
 public abstract void setHeight(String height)
 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 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)
 o getWidth
 public abstract String getWidth()
Frame width. See the width attribute definition in HTML 4.0.

 o setWidth
 public abstract void setWidth(String width)

All Packages  Class Hierarchy  This Package  Previous  Next  Index