org.w3c.dom.html2
Interface HTMLTableRowElement
- Element, HTMLElement, Node
public interface HTMLTableRowElement
ATTRIBUTE_NODE , CDATA_SECTION_NODE , COMMENT_NODE , DOCUMENT_FRAGMENT_NODE , DOCUMENT_NODE , DOCUMENT_POSITION_CONTAINED_BY , DOCUMENT_POSITION_CONTAINS , DOCUMENT_POSITION_DISCONNECTED , DOCUMENT_POSITION_FOLLOWING , DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC , DOCUMENT_POSITION_PRECEDING , DOCUMENT_TYPE_NODE , ELEMENT_NODE , ENTITY_NODE , ENTITY_REFERENCE_NODE , NOTATION_NODE , PROCESSING_INSTRUCTION_NODE , TEXT_NODE |
void | deleteCell(int index) - Delete a cell from the current row.
|
String | getAlign() - Horizontal alignment of data within cells of this row.
|
String | getBgColor() - Background color for rows.
|
HTMLCollection | getCells() - The collection of cells in this row.
|
String | getCh() - Alignment character for cells in a column.
|
String | getChOff() - Offset of alignment character.
|
int | getRowIndex() - This is in logical order and not in document order.
|
int | getSectionRowIndex() - The index of this row, relative to the current section (
THEAD , TFOOT , or TBODY ),
starting from 0.
|
String | getVAlign() - Vertical alignment of data within cells of this row.
|
HTMLElement | insertCell(int index) - Insert an empty
TD cell into this row.
|
void | setAlign(String align) - Horizontal alignment of data within cells of this row.
|
void | setBgColor(String bgColor) - Background color for rows.
|
void | setCh(String ch) - Alignment character for cells in a column.
|
void | setChOff(String chOff) - Offset of alignment character.
|
void | setVAlign(String vAlign) - Vertical alignment of data within cells of this row.
|
getAttribute , getAttributeNS , getAttributeNode , getAttributeNodeNS , getElementsByTagName , getElementsByTagNameNS , getSchemaTypeInfo , getTagName , hasAttribute , hasAttributeNS , removeAttribute , removeAttributeNS , removeAttributeNode , setAttribute , setAttributeNS , setAttributeNode , setAttributeNodeNS , setIdAttribute , setIdAttributeNS , setIdAttributeNode |
appendChild , cloneNode , compareDocumentPosition , getAttributes , getBaseURI , getChildNodes , getFeature , getFirstChild , getLastChild , getLocalName , getNamespaceURI , getNextSibling , getNodeName , getNodeType , getNodeValue , getOwnerDocument , getParentNode , getPrefix , getPreviousSibling , getTextContent , getUserData , hasAttributes , hasChildNodes , insertBefore , isDefaultNamespace , isEqualNode , isSameNode , isSupported , lookupNamespaceURI , lookupPrefix , normalize , removeChild , replaceChild , setNodeValue , setPrefix , setTextContent , setUserData |
deleteCell
public void deleteCell(int index)
throws DOMException
Delete a cell from the current row.
index
- The index of the cell to delete, starting from 0. If the
index is -1 the last cell in the row is deleted.
DOMException
- INDEX_SIZE_ERR: Raised if the specified index
is greater
than or equal to the number of cells or if the index is a negative
number other than -1.
getAlign
public String getAlign()
Horizontal alignment of data within cells of this row. See the align
attribute definition in HTML 4.01.
getBgColor
public String getBgColor()
Background color for rows. See the bgcolor attribute definition in HTML
4.01. This attribute is deprecated in HTML 4.01.
getCells
public HTMLCollection getCells()
The collection of cells in this row.
getCh
public String getCh()
Alignment character for cells in a column. See the char attribute
definition in HTML 4.01.
getChOff
public String getChOff()
Offset of alignment character. See the charoff attribute definition in
HTML 4.01.
getRowIndex
public int getRowIndex()
This is in logical order and not in document order. The
rowIndex
does take into account sections (
THEAD
, TFOOT
, or TBODY
) within
the table, placing THEAD
rows first in the index,
followed by TBODY
rows, followed by TFOOT
rows.
getSectionRowIndex
public int getSectionRowIndex()
The index of this row, relative to the current section (
THEAD
, TFOOT
, or TBODY
),
starting from 0.
getVAlign
public String getVAlign()
Vertical alignment of data within cells of this row. See the valign
attribute definition in HTML 4.01.
insertCell
public HTMLElement insertCell(int index)
throws DOMException
Insert an empty TD
cell into this row. If
index
is -1 or equal to the number of cells, the new
cell is appended.
index
- The place to insert the cell, starting from 0.
- The newly created cell.
DOMException
- INDEX_SIZE_ERR: Raised if the specified index
is greater
than the number of cells or if the index is a negative number other
than -1.
setAlign
public void setAlign(String align)
Horizontal alignment of data within cells of this row. See the align
attribute definition in HTML 4.01.
setBgColor
public void setBgColor(String bgColor)
Background color for rows. See the bgcolor attribute definition in HTML
4.01. This attribute is deprecated in HTML 4.01.
setCh
public void setCh(String ch)
Alignment character for cells in a column. See the char attribute
definition in HTML 4.01.
setChOff
public void setChOff(String chOff)
Offset of alignment character. See the charoff attribute definition in
HTML 4.01.
setVAlign
public void setVAlign(String vAlign)
Vertical alignment of data within cells of this row. See the valign
attribute definition in HTML 4.01.