public interface

HTMLTableCellElement

implements HTMLElement
org.w3c.dom.html.HTMLTableCellElement

Class Overview

The object used to represent the TH and TD elements. See the TD element definition in HTML 4.0.

See also the Document Object Model (DOM) Level 2 Specification.

Summary

[Expand]
Inherited Constants
From interface org.w3c.dom.Node
Public Methods
abstract String getAbbr()
Abbreviation for header cells.
abstract String getAlign()
Horizontal alignment of data in cell.
abstract String getAxis()
Names group of related headers.
abstract String getBgColor()
Cell background color.
abstract int getCellIndex()
The index of this cell in the row, starting from 0.
abstract String getCh()
Alignment character for cells in a column.
abstract String getChOff()
Offset of alignment character.
abstract int getColSpan()
Number of columns spanned by cell.
abstract String getHeaders()
List of id attribute values for header cells.
abstract String getHeight()
Cell height.
abstract boolean getNoWrap()
Suppress word wrapping.
abstract int getRowSpan()
Number of rows spanned by cell.
abstract String getScope()
Scope covered by header cells.
abstract String getVAlign()
Vertical alignment of data in cell.
abstract String getWidth()
Cell width.
abstract void setAbbr(String abbr)
abstract void setAlign(String align)
abstract void setAxis(String axis)
abstract void setBgColor(String bgColor)
abstract void setCh(String ch)
abstract void setChOff(String chOff)
abstract void setColSpan(int colSpan)
abstract void setHeaders(String headers)
abstract void setHeight(String height)
abstract void setNoWrap(boolean noWrap)
abstract void setRowSpan(int rowSpan)
abstract void setScope(String scope)
abstract void setVAlign(String vAlign)
abstract void setWidth(String width)
[Expand]
Inherited Methods
From interface org.w3c.dom.Element
From interface org.w3c.dom.Node
From interface org.w3c.dom.html.HTMLElement

Public Methods

public abstract String getAbbr ()

Abbreviation for header cells. See the abbr attribute definition in HTML 4.0.

public abstract String getAlign ()

Horizontal alignment of data in cell. See the align attribute definition in HTML 4.0.

public abstract String getAxis ()

Names group of related headers. See the axis attribute definition in HTML 4.0.

public abstract String getBgColor ()

Cell background color. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public abstract int getCellIndex ()

The index of this cell in the row, starting from 0. This index is in document tree order and not display order.

public abstract String getCh ()

Alignment character for cells in a column. See the char attribute definition in HTML 4.0.

public abstract String getChOff ()

Offset of alignment character. See the charoff attribute definition in HTML 4.0.

public abstract int getColSpan ()

Number of columns spanned by cell. See the colspan attribute definition in HTML 4.0.

public abstract String getHeaders ()

List of id attribute values for header cells. See the headers attribute definition in HTML 4.0.

public abstract String getHeight ()

Cell height. See the height attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public abstract boolean getNoWrap ()

Suppress word wrapping. See the nowrap attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public abstract int getRowSpan ()

Number of rows spanned by cell. See the rowspan attribute definition in HTML 4.0.

public abstract String getScope ()

Scope covered by header cells. See the scope attribute definition in HTML 4.0.

public abstract String getVAlign ()

Vertical alignment of data in cell. See the valign attribute definition in HTML 4.0.

public abstract String getWidth ()

Cell width. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public abstract void setAbbr (String abbr)

public abstract void setAlign (String align)

public abstract void setAxis (String axis)

public abstract void setBgColor (String bgColor)

public abstract void setCh (String ch)

public abstract void setChOff (String chOff)

public abstract void setColSpan (int colSpan)

public abstract void setHeaders (String headers)

public abstract void setHeight (String height)

public abstract void setNoWrap (boolean noWrap)

public abstract void setRowSpan (int rowSpan)

public abstract void setScope (String scope)

public abstract void setVAlign (String vAlign)

public abstract void setWidth (String width)