All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLTableColElement

public interface HTMLTableColElement
extends HTMLElement
Regroups the COL and COLGROUP elements. See the COL element definition in HTML 4.0.


Method Index

 o getAlign()
Horizontal alignment of cell data in column.
 o getCh()
Alignment character for cells in a column.
 o getChOff()
Offset of alignment character.
 o getSpan()
Indicates the number of columns in a group or affected by a grouping.
 o getVAlign()
Vertical alignment of cell data in column.
 o getWidth()
Default column width.
 o setAlign(String)
 o setCh(String)
 o setChOff(String)
 o setSpan(int)
 o setVAlign(String)
 o setWidth(String)

Methods

 o getAlign
 public abstract String getAlign()
Horizontal alignment of cell data in column. See the align attribute definition in HTML 4.0.

 o setAlign
 public abstract void setAlign(String align)
 o getCh
 public abstract String getCh()
Alignment character for cells in a column. See the char attribute definition in HTML 4.0.

 o setCh
 public abstract void setCh(String ch)
 o getChOff
 public abstract String getChOff()
Offset of alignment character. See the charoff attribute definition in HTML 4.0.

 o setChOff
 public abstract void setChOff(String chOff)
 o getSpan
 public abstract int getSpan()
Indicates the number of columns in a group or affected by a grouping. See the span attribute definition in HTML 4.0.

 o setSpan
 public abstract void setSpan(int span)
 o getVAlign
 public abstract String getVAlign()
Vertical alignment of cell data in column. See the valign attribute definition in HTML 4.0.

 o setVAlign
 public abstract void setVAlign(String vAlign)
 o getWidth
 public abstract String getWidth()
Default column width. See the width attribute definition in HTML 4.0.

 o setWidth
 public abstract void setWidth(String width)

All Packages  Class Hierarchy  This Package  Previous  Next  Index