All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.dom.html.HTMLTableCellElement Maven / Gradle / Ivy

The newest version!
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//

package org.w3c.dom.html;

import org.w3c.dom.*;

/**

  

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


Property Summary
 cellIndex getCellIndex setCellIndex

The index of this cell in the row.

 abbr getAbbr setAbbr

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

 align getAlign setAlign

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

 axis getAxis setAxis

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

 bgColor getBgColor setBgColor

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

 ch getCh setCh

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

 chOff getChOff setChOff

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

 colSpan getColSpan setColSpan

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

 headers getHeaders setHeaders

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

 height getHeight setHeight

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

 noWrap getNoWrap setNoWrap

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

 rowSpan getRowSpan setRowSpan

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

 scope getScope setScope

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

 vAlign getVAlign setVAlign

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

 width getWidth setWidth

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

  */ public interface HTMLTableCellElement extends HTMLElement { /** Assigns the value of the cellIndex property. */ void setCellIndex (int cellIndex); /** * Returns the value of the cellIndex property. */ int getCellIndex (); /** Assigns the value of the abbr property. */ void setAbbr (String abbr); /** * Returns the value of the abbr property. */ String getAbbr (); /** Assigns the value of the align property. */ void setAlign (String align); /** * Returns the value of the align property. */ String getAlign (); /** Assigns the value of the axis property. */ void setAxis (String axis); /** * Returns the value of the axis property. */ String getAxis (); /** Assigns the value of the bgColor property. */ void setBgColor (String bgColor); /** * Returns the value of the bgColor property. */ String getBgColor (); /** Assigns the value of the ch property. */ void setCh (String ch); /** * Returns the value of the ch property. */ String getCh (); /** Assigns the value of the chOff property. */ void setChOff (String chOff); /** * Returns the value of the chOff property. */ String getChOff (); /** Assigns the value of the colSpan property. */ void setColSpan (int colSpan); /** * Returns the value of the colSpan property. */ int getColSpan (); /** Assigns the value of the headers property. */ void setHeaders (String headers); /** * Returns the value of the headers property. */ String getHeaders (); /** Assigns the value of the height property. */ void setHeight (String height); /** * Returns the value of the height property. */ String getHeight (); /** Assigns the value of the noWrap property. */ void setNoWrap (boolean noWrap); /** * Returns the value of the noWrap property. */ boolean getNoWrap (); /** Assigns the value of the rowSpan property. */ void setRowSpan (int rowSpan); /** * Returns the value of the rowSpan property. */ int getRowSpan (); /** Assigns the value of the scope property. */ void setScope (String scope); /** * Returns the value of the scope property. */ String getScope (); /** Assigns the value of the vAlign property. */ void setVAlign (String vAlign); /** * Returns the value of the vAlign property. */ String getVAlign (); /** Assigns the value of the width property. */ void setWidth (String width); /** * Returns the value of the width property. */ String getWidth (); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy