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.
-
deleteRow(int)
-
Delete a row from this section.
-
getAlign()
- Horizontal alignment of data in cells.
-
getCh()
- Alignment character for cells in a column.
-
getChOff()
- Offset of alignment character.
-
getRows()
- The collection of rows in this table section.
-
getVAlign()
- Vertical alignment of data in cells.
-
insertRow(int)
-
Insert a row into this section.
-
setAlign(String)
-
-
setCh(String)
-
-
setChOff(String)
-
-
setVAlign(String)
-
getAlign
public abstract String getAlign()
- Horizontal alignment of data in cells. See the align
attribute for HTMLTheadElement for details.
setAlign
public abstract void setAlign(String align)
getCh
public abstract String getCh()
- Alignment character for cells in a column. See the char attribute definition in HTML 4.0.
setCh
public abstract void setCh(String ch)
getChOff
public abstract String getChOff()
- Offset of alignment character. See the charoff attribute definition in HTML 4.0.
setChOff
public abstract void setChOff(String chOff)
getVAlign
public abstract String getVAlign()
- Vertical alignment of data in cells.
See the valign
attribute for HTMLTheadElement for details.
setVAlign
public abstract void setVAlign(String vAlign)
getRows
public abstract HTMLCollection getRows()
- The collection of rows in this table section.
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.
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