org.kde.koala

Class HTMLTableSectionElement

public class HTMLTableSectionElement extends HTMLElement

The THEAD , TFOOT , and TBODY elements.

UNKNOWN: The THEAD , TFOOT , and TBODY elements.

Constructor Summary
protected HTMLTableSectionElement(Class dummy)
HTMLTableSectionElement()
HTMLTableSectionElement(HTMLTableSectionElement other)
HTMLTableSectionElement(Node other)
Method Summary
Stringalign()
Horizontal alignment of data in cells.
Stringch()
Alignment character for cells in a column.
StringchOff()
Offset of alignment character.
voiddeleteRow(long index)
Delete a row from this section.
HTMLElementinsertRow(long index)
Insert a row into this section.
HTMLCollectionrows()
The collection of rows in this table section.
voidsetAlign(String arg1)
see align
voidsetCh(String arg1)
see ch
voidsetChOff(String arg1)
see chOff
voidsetVAlign(String arg1)
see vAlign
StringvAlign()
Vertical alignment of data in cells.

Constructor Detail

HTMLTableSectionElement

protected HTMLTableSectionElement(Class dummy)

HTMLTableSectionElement

public HTMLTableSectionElement()

HTMLTableSectionElement

public HTMLTableSectionElement(HTMLTableSectionElement other)

HTMLTableSectionElement

public HTMLTableSectionElement(Node other)

Method Detail

align

public String align()
Horizontal alignment of data in cells. See the align attribute for HTMLTheadElement for details.

UNKNOWN: Horizontal alignment of data in cells.

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.

deleteRow

public void deleteRow(long index)
Delete a row from this section.

Parameters: index The index of the row to be deleted, or -1 to delete the last row. This index starts from 0 and is relative only to the rows contained inside this section, not all the rows in the table.

UNKNOWN: Delete a row from this section.

insertRow

public HTMLElement insertRow(long index)
Insert a row into this section. The new row is inserted immediately before the current indexth row in this section. If index is -1 or equal to the number of rows in this sectino, the new row is appended.

Parameters: index The row number where to insert a new row.

Returns: The newly created row.

UNKNOWN: Insert a row into this section.

rows

public HTMLCollection rows()
The collection of rows in this table section.

UNKNOWN: The collection of rows in this table section.

setAlign

public void setAlign(String arg1)
see align

UNKNOWN: see align

setCh

public void setCh(String arg1)
see ch

UNKNOWN: see ch

setChOff

public void setChOff(String arg1)
see chOff

UNKNOWN: see chOff

setVAlign

public void setVAlign(String arg1)
see vAlign

UNKNOWN: see vAlign

vAlign

public String vAlign()
Vertical alignment of data in cells. See the valign attribute for HTMLTheadElement for details.

UNKNOWN: Vertical alignment of data in cells.