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

HTMLTableCellElement

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

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetAbbr()
Abbreviation for header cells. See the abbr attribute definition in HTML 4.0.

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

public java.lang.StringgetAxis()
Names group of related headers. See the axis attribute definition in HTML 4.0.

public java.lang.StringgetBgColor()
Cell background color. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

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

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 intgetColSpan()
Number of columns spanned by cell. See the colspan attribute definition in HTML 4.0.

public java.lang.StringgetHeaders()
List of id attribute values for header cells. See the headers attribute definition in HTML 4.0.

public java.lang.StringgetHeight()
Cell height. See the height attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public booleangetNoWrap()
Suppress word wrapping. See the nowrap attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public intgetRowSpan()
Number of rows spanned by cell. See the rowspan attribute definition in HTML 4.0.

public java.lang.StringgetScope()
Scope covered by header cells. See the scope attribute definition in HTML 4.0.

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

public java.lang.StringgetWidth()
Cell width. See the width attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

public voidsetAbbr(java.lang.String abbr)

public voidsetAlign(java.lang.String align)

public voidsetAxis(java.lang.String axis)

public voidsetBgColor(java.lang.String bgColor)

public voidsetCh(java.lang.String ch)

public voidsetChOff(java.lang.String chOff)

public voidsetColSpan(int colSpan)

public voidsetHeaders(java.lang.String headers)

public voidsetHeight(java.lang.String height)

public voidsetNoWrap(boolean noWrap)

public voidsetRowSpan(int rowSpan)

public voidsetScope(java.lang.String scope)

public voidsetVAlign(java.lang.String vAlign)

public voidsetWidth(java.lang.String width)