org.w3c.dom.html2

Interface HTMLFrameSetElement

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
StringgetCols()
The number of columns of frames in the frameset.
StringgetRows()
The number of rows of frames in the frameset.
voidsetCols(String cols)
The number of columns of frames in the frameset.
voidsetRows(String rows)
The number of rows of frames in the frameset.

Method Detail

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.