Module jdk.xml.dom

Interface HTMLTableRowElement

    • Method Detail

      • getRowIndex

        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

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

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

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

        void setAlign​(String align)
      • getBgColor

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

        void setBgColor​(String bgColor)
      • getCh

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

        void setCh​(String ch)
      • getChOff

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

        void setChOff​(String chOff)
      • getVAlign

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

        void setVAlign​(String vAlign)
      • insertCell

        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

        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.