class DOM.HTMLTableRowElement |
|
|
A row in a table. See the TR element definition in HTML 4.0.
|
|
|
|
|
|
Horizontal alignment of data within cells of this row. See the align attribute definition in HTML 4.0.
|
|
Background color for rows. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
|
|
The collection of cells in this row.
|
|
Alignment character for cells in a column. See the char attribute definition in HTML 4.0.
|
|
Offset of alignment character. See the charoff attribute definition in HTML 4.0.
|
|
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. Returns
|
|
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. Returns The newly created cell.
|
|
The index of this row, relative to the entire table. 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. |
|
The index of this row, relative to the current section ( THEAD , TFOOT , or TBODY ).
|
|
see align |
|
see bgColor |
|
see cells This function is obsolete - the cells property is actually supposed to be read-only (http://www.w3.org/DOM/updates/REC-DOM-Level-1-19981001-errata.html) |
|
see ch |
|
see chOff |
|
see rowIndex This function is obsolete - the rowIndex property is actually supposed to be read-only (http://www.w3.org/DOM/updates/REC-DOM-Level-1-19981001-errata.html) |
|
see sectionRowIndex This function is obsolete - the sectionRowIndex property is actually supposed to be read-only (http://www.w3.org/DOM/updates/REC-DOM-Level-1-19981001-errata.html) |
|
see vAlign |
|
Vertical alignment of data within cells of this row. See the valign attribute definition in HTML 4.0.
|