org.kde.koala

Class HTMLTableRowElement

public class HTMLTableRowElement extends HTMLElement

A row in a table. See the TR element definition in HTML 4.0.

UNKNOWN: A row in a table.

Constructor Summary
protected HTMLTableRowElement(Class dummy)
HTMLTableRowElement()
HTMLTableRowElement(HTMLTableRowElement other)
HTMLTableRowElement(Node other)
Method Summary
Stringalign()
Horizontal alignment of data within cells of this row.
StringbgColor()
Background color for rows.
HTMLCollectioncells()
The collection of cells in this row.
Stringch()
Alignment character for cells in a column.
StringchOff()
Offset of alignment character.
voiddeleteCell(long index)
Delete a cell from the current row.
HTMLElementinsertCell(long index)
Insert an empty TD cell into this row.
longrowIndex()
The index of this row, relative to the entire table.
longsectionRowIndex()
The index of this row, relative to the current section ( THEAD , TFOOT , or TBODY ).
voidsetAlign(String arg1)
see align
voidsetBgColor(String arg1)
see bgColor
voidsetCells(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)
voidsetCh(String arg1)
see ch
voidsetChOff(String arg1)
see chOff
voidsetRowIndex(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)
voidsetSectionRowIndex(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)
voidsetVAlign(String arg1)
see vAlign
StringvAlign()
Vertical alignment of data within cells of this row.

Constructor Detail

HTMLTableRowElement

protected HTMLTableRowElement(Class dummy)

HTMLTableRowElement

public HTMLTableRowElement()

HTMLTableRowElement

public HTMLTableRowElement(HTMLTableRowElement other)

HTMLTableRowElement

public HTMLTableRowElement(Node other)

Method Detail

align

public String align()
Horizontal alignment of data within cells of this row. See the align attribute definition in HTML 4.0.

UNKNOWN: Horizontal alignment of data within cells of this row.

bgColor

public String bgColor()
Background color for rows. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

UNKNOWN: Background color for rows.

cells

public HTMLCollection cells()
The collection of cells in this row.

UNKNOWN: The collection of cells in this row.

ch

public String ch()
Alignment character for cells in a column. See the char attribute definition in HTML 4.0.

UNKNOWN: Alignment character for cells in a column.

chOff

public String chOff()
Offset of alignment character. See the charoff attribute definition in HTML 4.0.

UNKNOWN: Offset of alignment character.

deleteCell

public void deleteCell(long index)
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.

UNKNOWN: Delete a cell from the current row.

insertCell

public HTMLElement insertCell(long index)
Insert an empty 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.

rowIndex

public long rowIndex()
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.

UNKNOWN: The index of this row, relative to the entire table.

sectionRowIndex

public long sectionRowIndex()
The index of this row, relative to the current section ( THEAD , TFOOT , or TBODY ).

UNKNOWN: The index of this row, relative to the current section ( THEAD , TFOOT , or TBODY ).

setAlign

public void setAlign(String arg1)
see align

UNKNOWN: see align

setBgColor

public void setBgColor(String arg1)
see bgColor

UNKNOWN: see bgColor

setCells

public 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)

UNKNOWN: see cells

setCh

public void setCh(String arg1)
see ch

UNKNOWN: see ch

setChOff

public void setChOff(String arg1)
see chOff

UNKNOWN: see chOff

setRowIndex

public 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)

UNKNOWN: see rowIndex

setSectionRowIndex

public 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)

UNKNOWN: see sectionRowIndex

setVAlign

public void setVAlign(String arg1)
see vAlign

UNKNOWN: see vAlign

vAlign

public String vAlign()
Vertical alignment of data within cells of this row. See the valign attribute definition in HTML 4.0.

UNKNOWN: Vertical alignment of data within cells of this row.