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.
-
getAlign()
- Horizontal alignment of cell data in column.
-
getCh()
- Alignment character for cells in a column.
-
getChOff()
- Offset of alignment character.
-
getSpan()
- Indicates the number of columns in a group or affected by a grouping.
-
getVAlign()
- Vertical alignment of cell data in column.
-
getWidth()
- Default column width.
-
setAlign(String)
-
-
setCh(String)
-
-
setChOff(String)
-
-
setSpan(int)
-
-
setVAlign(String)
-
-
setWidth(String)
-
getAlign
public abstract String getAlign()
- Horizontal alignment of cell data in column. See the align attribute definition in HTML 4.0.
setAlign
public abstract void setAlign(String align)
getCh
public abstract String getCh()
- Alignment character for cells in a column. See the char attribute definition in HTML 4.0.
setCh
public abstract void setCh(String ch)
getChOff
public abstract String getChOff()
- Offset of alignment character. See the charoff attribute definition in HTML 4.0.
setChOff
public abstract void setChOff(String chOff)
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.
setSpan
public abstract void setSpan(int span)
getVAlign
public abstract String getVAlign()
- Vertical alignment of cell data in column. See the valign attribute definition in HTML 4.0.
setVAlign
public abstract void setVAlign(String vAlign)
getWidth
public abstract String getWidth()
- Default column width. See the width attribute definition in HTML 4.0.
setWidth
public abstract void setWidth(String width)
All Packages Class Hierarchy This Package Previous Next Index