Save This Page
Home » openjdk-7 » org.w3c » dom » html2 » [javadoc | source]
org.w3c.dom.html2
public interface: HTMLTableSectionElement [javadoc | source]

All Implemented Interfaces:
    HTMLElement

The THEAD, TFOOT, and TBODY elements.

See also the Document Object Model (DOM) Level 2 HTML Specification.
Method from org.w3c.dom.html2.HTMLTableSectionElement Summary:
deleteRow,   getAlign,   getCh,   getChOff,   getRows,   getVAlign,   insertRow,   setAlign,   setCh,   setChOff,   setVAlign
Method from org.w3c.dom.html2.HTMLTableSectionElement Detail:
 public  void deleteRow(int index) throws DOMException
    Delete a row from this section.
 public String getAlign()
    Horizontal alignment of data in cells. See the align attribute for HTMLTheadElement for details.
 public String getCh()
    Alignment character for cells in a column. See the char attribute definition in HTML 4.01.
 public String getChOff()
    Offset of alignment character. See the charoff attribute definition in HTML 4.01.
 public HTMLCollection getRows()
    The collection of rows in this table section.
 public String getVAlign()
    Vertical alignment of data in cells. See the valign attribute for HTMLTheadElement for details.
 public HTMLElement insertRow(int index) throws DOMException
    Insert a row into this section. The new row is inserted immediately before the current indexth row in this section. If index is -1 or equal to the number of rows in this section, the new row is appended.
 public  void setAlign(String align)
    Horizontal alignment of data in cells. See the align attribute for HTMLTheadElement for details.
 public  void setCh(String ch)
    Alignment character for cells in a column. See the char attribute definition in HTML 4.01.
 public  void setChOff(String chOff)
    Offset of alignment character. See the charoff attribute definition in HTML 4.01.
 public  void setVAlign(String vAlign)
    Vertical alignment of data in cells. See the valign attribute for HTMLTheadElement for details.