FileDocCategorySizeDatePackage
HTMLTableColElement.javaAPI DocJava SE 5 API2054Fri Aug 26 14:58:40 BST 2005org.w3c.dom.html

HTMLTableColElement

public interface HTMLTableColElement implements 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.

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetAlign()
Horizontal alignment of cell data in column. See the align attribute definition in HTML 4.0.

public java.lang.StringgetCh()
Alignment character for cells in a column. See the char attribute definition in HTML 4.0.

public java.lang.StringgetChOff()
Offset of alignment character. See the charoff attribute definition in HTML 4.0.

public intgetSpan()
Indicates the number of columns in a group or affected by a grouping. See the span attribute definition in HTML 4.0.

public java.lang.StringgetVAlign()
Vertical alignment of cell data in column. See the valign attribute definition in HTML 4.0.

public java.lang.StringgetWidth()
Default column width. See the width attribute definition in HTML 4.0.

public voidsetAlign(java.lang.String align)

public voidsetCh(java.lang.String ch)

public voidsetChOff(java.lang.String chOff)

public voidsetSpan(int span)

public voidsetVAlign(java.lang.String vAlign)

public voidsetWidth(java.lang.String width)