Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
public interface HTMLTableRowElement
extends HTMLElement
See also the Document Object Model (DOM) Level 2 HTML Specification.
Method Summary | |
void |
|
String |
|
String |
|
HTMLCollection |
|
String |
|
String |
|
int |
|
int |
|
String |
|
HTMLElement |
|
void |
|
void |
|
void |
|
void |
|
void |
|
Methods inherited from interface org.w3c.dom.Element | |
getAttribute , getAttributeNS , getAttributeNode , getAttributeNodeNS , getElementsByTagName , getElementsByTagNameNS , getSchemaTypeInfo , getTagName , hasAttribute , hasAttributeNS , removeAttribute , removeAttributeNS , removeAttributeNode , setAttribute , setAttributeNS , setAttributeNode , setAttributeNodeNS , setIdAttribute , setIdAttributeNS , setIdAttributeNode |
Methods inherited from interface org.w3c.dom.html2.HTMLElement | |
getClassName , getDir , getId , getLang , getTitle , setClassName , setDir , setId , setLang , setTitle |
public void deleteCell(int index) throws DOMException
Delete a cell from the current row.
- Parameters:
index
- The index of the cell to delete, starting from 0. If the index is -1 the last cell in the row is deleted.
- Throws:
DOMException
- INDEX_SIZE_ERR: Raised if the specifiedindex
is greater than or equal to the number of cells or if the index is a negative number other than -1.
public String getAlign()
Horizontal alignment of data within cells of this row. See the align attribute definition in HTML 4.01.
public String getBgColor()
Background color for rows. See the bgcolor attribute definition in HTML 4.01. This attribute is deprecated in HTML 4.01.
public String getCh()
Alignment character for cells in a column. See the char attribute definition in HTML 4.01.
public String getChOff()
Offset of alignment character. See the charoff attribute definition in HTML 4.01.
public int getRowIndex()
This is in logical order and not in document order. TherowIndex
does take into account sections (THEAD
,TFOOT
, orTBODY
) within the table, placingTHEAD
rows first in the index, followed byTBODY
rows, followed byTFOOT
rows.
public int getSectionRowIndex()
The index of this row, relative to the current section (THEAD
,TFOOT
, orTBODY
), starting from 0.
public String getVAlign()
Vertical alignment of data within cells of this row. See the valign attribute definition in HTML 4.01.
public HTMLElement insertCell(int index) throws DOMException
Insert an emptyTD
cell into this row. Ifindex
is -1 or equal to the number of cells, the new cell is appended.
- Parameters:
index
- The place to insert the cell, starting from 0.
- Returns:
- The newly created cell.
- Throws:
DOMException
- INDEX_SIZE_ERR: Raised if the specifiedindex
is greater than the number of cells or if the index is a negative number other than -1.
public void setAlign(String align)
Horizontal alignment of data within cells of this row. See the align attribute definition in HTML 4.01.
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.
public void setCh(String ch)
Alignment character for cells in a column. See the char attribute definition in HTML 4.01.
public void setChOff(String chOff)
Offset of alignment character. See the charoff attribute definition in HTML 4.01.
public void setVAlign(String vAlign)
Vertical alignment of data within cells of this row. See the valign attribute definition in HTML 4.01.