org.kde.koala
public class HTMLTableRowElement extends HTMLElement
UNKNOWN: A row in a table.
Constructor Summary | |
---|---|
protected | HTMLTableRowElement(Class dummy) |
HTMLTableRowElement() | |
HTMLTableRowElement(HTMLTableRowElement other) | |
HTMLTableRowElement(Node other) |
Method Summary | |
---|---|
String | align()
Horizontal alignment of data within cells of this row. |
String | bgColor()
Background color for rows. |
HTMLCollection | cells()
The collection of cells in this row. |
String | ch()
Alignment character for cells in a column. |
String | chOff()
Offset of alignment character. |
void | deleteCell(long index)
Delete a cell from the current row. |
HTMLElement | insertCell(long index)
Insert an empty TD cell into this row.
|
long | rowIndex()
The index of this row, relative to the entire table.
|
long | sectionRowIndex()
The index of this row, relative to the current section (
THEAD , TFOOT , or TBODY
). |
void | setAlign(String arg1)
see align |
void | setBgColor(String arg1)
see bgColor |
void | setCells(HTMLCollection arg1)
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) |
void | setCh(String arg1)
see ch |
void | setChOff(String arg1)
see chOff |
void | setRowIndex(long arg1)
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) |
void | setSectionRowIndex(long arg1)
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) |
void | setVAlign(String arg1)
see vAlign |
String | vAlign()
Vertical alignment of data within cells of this row. |
UNKNOWN: Horizontal alignment of data within cells of this row.
UNKNOWN: Background color for rows.
UNKNOWN: The collection of cells in this row.
UNKNOWN: Alignment character for cells in a column.
UNKNOWN: Offset of alignment character.
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.
UNKNOWN: Delete a cell from the current row.
TD
cell into this row.
If index is -1 or equal to the number of cells, the new
cell is appended.Parameters: index The place to insert the cell.
Returns: The newly created cell.
UNKNOWN: Insert an empty TD
cell into this row.
UNKNOWN: The index of this row, relative to the entire table.
THEAD
, TFOOT
, or TBODY
).UNKNOWN: The index of this row, relative to the current section ( THEAD
, TFOOT
, or TBODY
).
UNKNOWN: see align
UNKNOWN: see bgColor
UNKNOWN: see cells
UNKNOWN: see ch
UNKNOWN: see chOff
UNKNOWN: see rowIndex
UNKNOWN: see sectionRowIndex
UNKNOWN: see vAlign
UNKNOWN: Vertical alignment of data within cells of this row.