Module jdk.xml.dom

Interface HTMLTableColElement

All Superinterfaces:
Element, HTMLElement, Node

public interface HTMLTableColElement extends HTMLElement
Regroups the COL and COLGROUP elements. See the COL 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

    • getAlign Link icon

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

      void setAlign(String align)
    • 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)
    • getSpan Link icon

      int getSpan()
      Indicates the number of columns in a group or affected by a grouping. See the span attribute definition in HTML 4.0.
    • setSpan Link icon

      void setSpan(int span)
    • getVAlign Link icon

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

      void setVAlign(String vAlign)
    • getWidth Link icon

      String getWidth()
      Default column width. See the width attribute definition in HTML 4.0.
    • setWidth Link icon

      void setWidth(String width)