FileDocCategorySizeDatePackage
HTMLIFrameElement.javaAPI DocJava SE 5 API3168Fri Aug 26 14:58:40 BST 2005org.w3c.dom.html

HTMLIFrameElement

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

See also the Document Object Model (DOM) Level 2 Specification.

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetAlign()
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.

public org.w3c.dom.DocumentgetContentDocument()
The document this frame contains, if there is any and it is available, or null otherwise.

since
DOM Level 2

public java.lang.StringgetFrameBorder()
Request frame borders. See the frameborder attribute definition in HTML 4.0.

public java.lang.StringgetHeight()
Frame height. See the height attribute definition in HTML 4.0.

public java.lang.StringgetLongDesc()
URI designating a long description of this image or frame. See the longdesc attribute definition in HTML 4.0.

public java.lang.StringgetMarginHeight()
Frame margin height, in pixels. See the marginheight attribute definition in HTML 4.0.

public java.lang.StringgetMarginWidth()
Frame margin width, in pixels. See the marginwidth attribute definition in HTML 4.0.

public java.lang.StringgetName()
The frame name (object of the target attribute). See the name attribute definition in HTML 4.0.

public java.lang.StringgetScrolling()
Specify whether or not the frame should have scrollbars. See the scrolling attribute definition in HTML 4.0.

public java.lang.StringgetSrc()
A URI designating the initial frame contents. See the src attribute definition in HTML 4.0.

public java.lang.StringgetWidth()
Frame width. See the width attribute definition in HTML 4.0.

public voidsetAlign(java.lang.String align)

public voidsetFrameBorder(java.lang.String frameBorder)

public voidsetHeight(java.lang.String height)

public voidsetLongDesc(java.lang.String longDesc)

public voidsetMarginHeight(java.lang.String marginHeight)

public voidsetMarginWidth(java.lang.String marginWidth)

public voidsetName(java.lang.String name)

public voidsetScrolling(java.lang.String scrolling)

public voidsetSrc(java.lang.String src)

public voidsetWidth(java.lang.String width)