| org.w3c.dom.html.HTMLTableRowElement
All known Subclasses: org.apache.html.dom.HTMLTableRowElementImpl,
deleteCell | public void deleteCell(int index) throws DOMException(Code) | | Delete a cell from the current row.
Parameters: index - The index of the cell to delete, starting from 0. exception: DOMException - INDEX_SIZE_ERR: Raised if the specified index is greater than or equal to the number of cells or if the index is negative. |
getAlign | public String getAlign()(Code) | | Horizontal alignment of data within cells of this row. See the align
attribute definition in HTML 4.0.
|
getBgColor | public String getBgColor()(Code) | | Background color for rows. See the bgcolor attribute definition in
HTML 4.0. This attribute is deprecated in HTML 4.0.
|
getCh | public String getCh()(Code) | | Alignment character for cells in a column. See the char attribute
definition in HTML 4.0.
|
getChOff | public String getChOff()(Code) | | Offset of alignment character. See the charoff attribute definition
in HTML 4.0.
|
getRowIndex | public int getRowIndex()(Code) | | The index of this row, relative to the entire table, starting from 0.
This is in document tree order and not display order. The
rowIndex does not take into account sections (
THEAD , TFOOT , or TBODY )
within the table.
|
getSectionRowIndex | public int getSectionRowIndex()(Code) | | The index of this row, relative to the current section (
THEAD , TFOOT , or TBODY ),
starting from 0.
|
getVAlign | public String getVAlign()(Code) | | Vertical alignment of data within cells of this row. See the valign
attribute definition in HTML 4.0.
|
insertCell | public HTMLElement insertCell(int index) throws DOMException(Code) | | Insert an empty TD cell into this row. If
index is equal to the number of cells, the new cell is
appended
Parameters: index - The place to insert the cell, starting from 0. The newly created cell. exception: DOMException - INDEX_SIZE_ERR: Raised if the specified index is greater than the number of cells or if the index is negative. |
|
|