org.w3c.dom.html

Interface HTMLTableColElement

public interface HTMLTableColElement extends HTMLElement

Regroups the COL and COLGROUP elements. See the COL element definition in HTML 4.0.
Method Summary
StringgetAlign()
Horizontal alignment of cell data in column.
StringgetCh()
Alignment character for cells in a column.
StringgetChOff()
Offset of alignment character.
intgetSpan()
Indicates the number of columns in a group or affected by a grouping.
StringgetVAlign()
Vertical alignment of cell data in column.
StringgetWidth()
Default column width.
voidsetAlign(String align)
voidsetCh(String ch)
voidsetChOff(String chOff)
voidsetSpan(int span)
voidsetVAlign(String vAlign)
voidsetWidth(String width)

Method Detail

getAlign

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

getCh

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

getChOff

public String getChOff()
Offset of alignment character. See the charoff attribute definition in HTML 4.0.

getSpan

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.

getVAlign

public String getVAlign()
Vertical alignment of cell data in column. See the valign attribute definition in HTML 4.0.

getWidth

public String getWidth()
Default column width. See the width attribute definition in HTML 4.0.

setAlign

public void setAlign(String align)

setCh

public void setCh(String ch)

setChOff

public void setChOff(String chOff)

setSpan

public void setSpan(int span)

setVAlign

public void setVAlign(String vAlign)

setWidth

public void setWidth(String width)