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

All Implemented Interfaces:
    HTMLElement

The THEAD , TFOOT , and TBODY elements.

See also the Document Object Model (DOM) Level 2 Specification.
Method from org.w3c.dom.html.HTMLTableSectionElement Summary:
deleteRow,   getAlign,   getCh,   getChOff,   getRows,   getVAlign,   insertRow,   setAlign,   setCh,   setChOff,   setVAlign
Method from org.w3c.dom.html.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.0.
 public String getChOff()
    Offset of alignment character. See the charoff attribute definition in HTML 4.0.
 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 index th row in this section. If index is equal to the number of rows in this section, the new row is appended.
 public  void setAlign(String align)
 public  void setCh(String ch)
 public  void setChOff(String chOff)
 public  void setVAlign(String vAlign)