Interface HTMLTableCellElement

  • All Superinterfaces:
    Element, HTMLElement, Node

    public interface HTMLTableCellElement
    extends HTMLElement
    The object used to represent the TH and TD elements. See the TD element definition in HTML 4.0.
    • Method Detail

      • getCellIndex

        int getCellIndex()
        The index of this cell in the row.
      • setCellIndex

        void setCellIndex​(int cellIndex)
      • getAbbr

        java.lang.String getAbbr()
        Abbreviation for header cells. See the abbr attribute definition in HTML 4.0.
      • setAbbr

        void setAbbr​(java.lang.String abbr)
      • getAlign

        java.lang.String getAlign()
        Horizontal alignment of data in cell. See the align attribute definition in HTML 4.0.
      • setAlign

        void setAlign​(java.lang.String align)
      • getAxis

        java.lang.String getAxis()
        Names group of related headers. See the axis attribute definition in HTML 4.0.
      • setAxis

        void setAxis​(java.lang.String axis)
      • getBgColor

        java.lang.String getBgColor()
        Cell background color. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
      • setBgColor

        void setBgColor​(java.lang.String bgColor)
      • getCh

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

        void setCh​(java.lang.String ch)
      • getChOff

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

        void setChOff​(java.lang.String chOff)
      • getColSpan

        int getColSpan()
        Number of columns spanned by cell. See the colspan attribute definition in HTML 4.0.
      • setColSpan

        void setColSpan​(int colSpan)
      • getHeaders

        java.lang.String getHeaders()
        List of id attribute values for header cells. See the headers attribute definition in HTML 4.0.
      • setHeaders

        void setHeaders​(java.lang.String headers)
      • getHeight

        java.lang.String getHeight()
        Cell height. See the height attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
      • setHeight

        void setHeight​(java.lang.String height)
      • getNoWrap

        boolean getNoWrap()
        Suppress word wrapping. See the nowrap attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
      • setNoWrap

        void setNoWrap​(boolean noWrap)
      • getRowSpan

        int getRowSpan()
        Number of rows spanned by cell. See the rowspan attribute definition in HTML 4.0.
      • setRowSpan

        void setRowSpan​(int rowSpan)
      • getScope

        java.lang.String getScope()
        Scope covered by header cells. See the scope attribute definition in HTML 4.0.
      • setScope

        void setScope​(java.lang.String scope)
      • getVAlign

        java.lang.String getVAlign()
        Vertical alignment of data in cell. See the valign attribute definition in HTML 4.0.
      • setVAlign

        void setVAlign​(java.lang.String vAlign)
      • getWidth

        java.lang.String getWidth()
        Cell width. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
      • setWidth

        void setWidth​(java.lang.String width)