Interface HTMLTableRowElement

All Superinterfaces:
Element, HTMLElement, Node

public interface HTMLTableRowElement extends HTMLElement
A row in a table. See the TR element definition in HTML 4.0.

See also the Document Object Model (DOM) Level 2 Specification.

Since:
1.4, DOM Level 2
  • Method Details Link icon

    • getRowIndex Link icon

      int getRowIndex()
      The index of this row, relative to the entire table, starting from 0. This is in document tree order and not display order. The rowIndex does not take into account sections ( THEAD , TFOOT , or TBODY ) within the table.
    • getSectionRowIndex Link icon

      int getSectionRowIndex()
      The index of this row, relative to the current section ( THEAD , TFOOT , or TBODY ), starting from 0.
    • getCells Link icon

      HTMLCollection getCells()
      The collection of cells in this row.
    • getAlign Link icon

      String getAlign()
      Horizontal alignment of data within cells of this row. See the align attribute definition in HTML 4.0.
    • setAlign Link icon

      void setAlign(String align)
    • getBgColor Link icon

      String getBgColor()
      Background color for rows. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
    • setBgColor Link icon

      void setBgColor(String bgColor)
    • getCh Link icon

      String getCh()
      Alignment character for cells in a column. See the char attribute definition in HTML 4.0.
    • setCh Link icon

      void setCh(String ch)
    • getChOff Link icon

      String getChOff()
      Offset of alignment character. See the charoff attribute definition in HTML 4.0.
    • setChOff Link icon

      void setChOff(String chOff)
    • getVAlign Link icon

      String getVAlign()
      Vertical alignment of data within cells of this row. See the valign attribute definition in HTML 4.0.
    • setVAlign Link icon

      void setVAlign(String vAlign)
    • insertCell Link icon

      HTMLElement insertCell(int index) throws DOMException
      Insert an empty TD cell into this row. If index is equal to the number of cells, the new cell is appended
      Parameters:
      index - The place to insert the cell, starting from 0.
      Returns:
      The newly created cell.
      Throws:
      DOMException - INDEX_SIZE_ERR: Raised if the specified index is greater than the number of cells or if the index is negative.
    • deleteCell Link icon

      void deleteCell(int index) throws DOMException
      Delete a cell from the current row.
      Parameters:
      index - The index of the cell to delete, starting from 0.
      Throws:
      DOMException - INDEX_SIZE_ERR: Raised if the specified index is greater than or equal to the number of cells or if the index is negative.