All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.dom.html.HTMLTableCellElement

public interface HTMLTableCellElement
extends HTMLElement
The object used to represent the TH and TD elements. See the TD element definition in HTML 4.0.


Method Index

 o getAbbr()
Abbreviation for header cells.
 o getAlign()
Horizontal alignment of data in cell.
 o getAxis()
Names group of related headers.
 o getBgColor()
Cell background color.
 o getCellIndex()
The index of this cell in the row.
 o getCh()
Alignment character for cells in a column.
 o getChOff()
Offset of alignment character.
 o getColSpan()
Number of columns spanned by cell.
 o getHeaders()
List of id attribute values for header cells.
 o getHeight()
Cell height.
 o getNoWrap()
Suppress word wrapping.
 o getRowSpan()
Number of rows spanned by cell.
 o getScope()
Scope covered by header cells.
 o getVAlign()
Vertical alignment of data in cell.
 o getWidth()
Cell width.
 o setAbbr(String)
 o setAlign(String)
 o setAxis(String)
 o setBgColor(String)
 o setCellIndex(int)
 o setCh(String)
 o setChOff(String)
 o setColSpan(int)
 o setHeaders(String)
 o setHeight(String)
 o setNoWrap(boolean)
 o setRowSpan(int)
 o setScope(String)
 o setVAlign(String)
 o setWidth(String)

Methods

 o getCellIndex
 public abstract int getCellIndex()
The index of this cell in the row.

 o setCellIndex
 public abstract void setCellIndex(int cellIndex)
 o getAbbr
 public abstract String getAbbr()
Abbreviation for header cells. See the abbr attribute definition in HTML 4.0.

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

 o setAlign
 public abstract void setAlign(String align)
 o getAxis
 public abstract String getAxis()
Names group of related headers. See the axis attribute definition in HTML 4.0.

 o setAxis
 public abstract void setAxis(String axis)
 o getBgColor
 public abstract String getBgColor()
Cell background color. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setBgColor
 public abstract void setBgColor(String bgColor)
 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 getColSpan
 public abstract int getColSpan()
Number of columns spanned by cell. See the colspan attribute definition in HTML 4.0.

 o setColSpan
 public abstract void setColSpan(int colSpan)
 o getHeaders
 public abstract String getHeaders()
List of id attribute values for header cells. See the headers attribute definition in HTML 4.0.

 o setHeaders
 public abstract void setHeaders(String headers)
 o getHeight
 public abstract String getHeight()
Cell height. See the height attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setHeight
 public abstract void setHeight(String height)
 o getNoWrap
 public abstract boolean getNoWrap()
Suppress word wrapping. See the nowrap attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setNoWrap
 public abstract void setNoWrap(boolean noWrap)
 o getRowSpan
 public abstract int getRowSpan()
Number of rows spanned by cell. See the rowspan attribute definition in HTML 4.0.

 o setRowSpan
 public abstract void setRowSpan(int rowSpan)
 o getScope
 public abstract String getScope()
Scope covered by header cells. See the scope attribute definition in HTML 4.0.

 o setScope
 public abstract void setScope(String scope)
 o getVAlign
 public abstract String getVAlign()
Vertical alignment of data in cell. See the valign attribute definition in HTML 4.0.

 o setVAlign
 public abstract void setVAlign(String vAlign)
 o getWidth
 public abstract String getWidth()
Cell width. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 o setWidth
 public abstract void setWidth(String width)

All Packages  Class Hierarchy  This Package  Previous  Next  Index