All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLTableSectionElement

public interface HTMLTableSectionElement
extends HTMLElement
The THEAD, TFOOT, and TBODY elements.


Method Index

 o deleteRow(int)
Delete a row from this section.
 o getAlign()
Horizontal alignment of data in cells.
 o getCh()
Alignment character for cells in a column.
 o getChOff()
Offset of alignment character.
 o getRows()
The collection of rows in this table section.
 o getVAlign()
Vertical alignment of data in cells.
 o insertRow(int)
Insert a row into this section.
 o setAlign(String)
 o setCh(String)
 o setChOff(String)
 o setVAlign(String)

Methods

 o getAlign
 public abstract String getAlign()
Horizontal alignment of data in cells. See the align attribute for HTMLTheadElement for details.

 o setAlign
 public abstract void setAlign(String align)
 o getCh
 public abstract String getCh()
Alignment character for cells in a column. See the char attribute definition in HTML 4.0.

 o setCh
 public abstract void setCh(String ch)
 o getChOff
 public abstract String getChOff()
Offset of alignment character. See the charoff attribute definition in HTML 4.0.

 o setChOff
 public abstract void setChOff(String chOff)
 o getVAlign
 public abstract String getVAlign()
Vertical alignment of data in cells. See the valign attribute for HTMLTheadElement for details.

 o setVAlign
 public abstract void setVAlign(String vAlign)
 o getRows
 public abstract HTMLCollection getRows()
The collection of rows in this table section.

 o insertRow
 public abstract HTMLElement insertRow(int index)
Insert a row into this section.

Parameters:
index - The row number where to insert a new row.
Returns:
The newly created row.
 o deleteRow
 public abstract void deleteRow(int index)
Delete a row from this section.

Parameters:
index - The index of the row to be deleted.

All Packages  Class Hierarchy  This Package  Previous  Next  Index