Class TableCellElement

    • Constructor Detail

      • TableCellElement

        protected TableCellElement()
    • Method Detail

      • is

        public static boolean is​(JavaScriptObject o)
        Determines whether the given JavaScriptObject can be cast to this class. A null object will cause this method to return false.
      • is

        public static boolean is​(Node node)
        Determine whether the given Node can be cast to this class. A null node will cause this method to return false.
      • is

        public static boolean is​(Element elem)
        Determine whether the given Element can be cast to this class. A null node will cause this method to return false.
      • getAlign

        public final java.lang.String getAlign()
        Horizontal alignment of data in cell.
        See Also:
        W3C HTML Specification
      • getCellIndex

        public final int getCellIndex()
        The index of this cell in the row, starting from 0. This index is in document tree order and not display order.
      • getCh

        public final java.lang.String getCh()
        Alignment character for cells in a column.
        See Also:
        W3C HTML Specification
      • getChOff

        public final java.lang.String getChOff()
        Offset of alignment character.
        See Also:
        W3C HTML Specification
      • getColSpan

        public final int getColSpan()
        Number of columns spanned by cell.
        See Also:
        W3C HTML Specification
      • getHeaders

        public final java.lang.String getHeaders()
        List of id attribute values for header cells.
        See Also:
        W3C HTML Specification
      • getVAlign

        public final java.lang.String getVAlign()
        Vertical alignment of data in cell.
        See Also:
        W3C HTML Specification
      • setAlign

        public final void setAlign​(java.lang.String align)
        Horizontal alignment of data in cell.
        See Also:
        W3C HTML Specification
      • setCh

        public final void setCh​(java.lang.String ch)
        Alignment character for cells in a column.
        See Also:
        W3C HTML Specification
      • setChOff

        public final void setChOff​(java.lang.String chOff)
        Offset of alignment character.
        See Also:
        W3C HTML Specification
      • setColSpan

        public final void setColSpan​(int colSpan)
        Number of columns spanned by cell.
        See Also:
        W3C HTML Specification
      • setHeaders

        public final void setHeaders​(java.lang.String headers)
        List of id attribute values for header cells.
        See Also:
        W3C HTML Specification
      • setRowSpan

        public final void setRowSpan​(int rowSpan)
        Number of rows spanned by cell.
        See Also:
        W3C HTML Specification
      • setVAlign

        public final void setVAlign​(java.lang.String vAlign)
        Vertical alignment of data in cell.
        See Also:
        W3C HTML Specification