Save This Page
Home » openjdk-7 » org.w3c » dom » html » [javadoc | source]
org.w3c.dom.html
public interface: HTMLTableColElement [javadoc | source]

All Implemented Interfaces:
    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.
Method from org.w3c.dom.html.HTMLTableColElement Summary:
getAlign,   getCh,   getChOff,   getSpan,   getVAlign,   getWidth,   setAlign,   setCh,   setChOff,   setSpan,   setVAlign,   setWidth
Method from org.w3c.dom.html.HTMLTableColElement Detail:
 public String getAlign()
    Horizontal alignment of cell data in column. See the align attribute definition in HTML 4.0.
 public String getCh()
    Alignment character for cells in a column. See the char attribute definition in HTML 4.0.
 public String getChOff()
    Offset of alignment character. See the charoff attribute definition in HTML 4.0.
 public int getSpan()
    Indicates the number of columns in a group or affected by a grouping. See the span attribute definition in HTML 4.0.
 public String getVAlign()
    Vertical alignment of cell data in column. See the valign attribute definition in HTML 4.0.
 public String getWidth()
    Default column width. See the width attribute definition in HTML 4.0.
 public  void setAlign(String align)
 public  void setCh(String ch)
 public  void setChOff(String chOff)
 public  void setSpan(int span)
 public  void setVAlign(String vAlign)
 public  void setWidth(String width)