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

HTMLFrameElement

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

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

Fields Summary
Constructors Summary
Methods Summary
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.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 booleangetNoResize()
When true, forbid user from resizing frame. See the noresize 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 voidsetFrameBorder(java.lang.String frameBorder)

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 voidsetNoResize(boolean noResize)

public voidsetScrolling(java.lang.String scrolling)

public voidsetSrc(java.lang.String src)