Methods Summary |
---|
public void | deleteCell(int index)Delete a cell from the current row.
|
public java.lang.String | getAlign()Horizontal alignment of data within cells of this row. See the align
attribute definition in HTML 4.0.
|
public java.lang.String | getBgColor()Background color for rows. See the bgcolor attribute definition in
HTML 4.0. This attribute is deprecated in HTML 4.0.
|
public org.w3c.dom.html.HTMLCollection | getCells()The collection of cells in this row.
|
public java.lang.String | getCh()Alignment character for cells in a column. See the char attribute
definition in HTML 4.0.
|
public java.lang.String | getChOff()Offset of alignment character. See the charoff attribute definition
in HTML 4.0.
|
public int | getRowIndex()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.
|
public int | getSectionRowIndex()The index of this row, relative to the current section (
THEAD , TFOOT , or TBODY ),
starting from 0.
|
public java.lang.String | getVAlign()Vertical alignment of data within cells of this row. See the valign
attribute definition in HTML 4.0.
|
public org.w3c.dom.html.HTMLElement | insertCell(int index)Insert an empty TD cell into this row. If
index is equal to the number of cells, the new cell is
appended
|
public void | setAlign(java.lang.String align)
|
public void | setBgColor(java.lang.String bgColor)
|
public void | setCh(java.lang.String ch)
|
public void | setChOff(java.lang.String chOff)
|
public void | setVAlign(java.lang.String vAlign)
|