org.w3c.dom.html2

Interface HTMLFrameSetElement

All Superinterfaces:
Element, HTMLElement
Known Implementing Classes:
HTMLFrameSetElementImpl

public interface HTMLFrameSetElement
extends HTMLElement

Create a grid of frames. See the FRAMESET element definition in HTML 4.01.

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

Method Summary

String
getCols()
The number of columns of frames in the frameset.
String
getRows()
The number of rows of frames in the frameset.
void
setCols(String cols)
The number of columns of frames in the frameset.
void
setRows(String rows)
The number of rows of frames in the frameset.

Methods inherited from interface org.w3c.dom.html2.HTMLElement

getClassName, getDir, getId, getLang, getTitle, setClassName, setDir, setId, setLang, setTitle

Method Details

getCols

public String getCols()
The number of columns of frames in the frameset. See the cols attribute definition in HTML 4.01.

getRows

public String getRows()
The number of rows of frames in the frameset. See the rows attribute definition in HTML 4.01.

setCols

public void setCols(String cols)
The number of columns of frames in the frameset. See the cols attribute definition in HTML 4.01.

setRows

public void setRows(String rows)
The number of rows of frames in the frameset. See the rows attribute definition in HTML 4.01.