All Packages Class Hierarchy This Package Previous Next Index
Interface org.w3c.dom.html.HTMLTableRowElement
- public interface HTMLTableRowElement
- extends HTMLElement
A row in a table. See the TR element definition in HTML 4.0.
-
deleteCell(int)
-
Delete a cell from the current row.
-
getAlign()
- Horizontal alignment of data within cells of this row.
-
getBgColor()
- Background color for rows.
-
getCells()
- The collection of cells in this row.
-
getCh()
- Alignment character for cells in a column.
-
getChOff()
- Offset of alignment character.
-
getRowIndex()
- The index of this row, relative to the entire table.
-
getSectionRowIndex()
- The index of this row, relative to the current section
(THEAD, TFOOT, or TBODY).
-
getVAlign()
- Vertical alignment of data within cells of this row.
-
insertCell(int)
-
Insert an empty TD cell into this row.
-
setAlign(String)
-
-
setBgColor(String)
-
-
setCells(HTMLCollection)
-
-
setCh(String)
-
-
setChOff(String)
-
-
setRowIndex(int)
-
-
setSectionRowIndex(int)
-
-
setVAlign(String)
-
getRowIndex
public abstract int getRowIndex()
- The index of this row, relative to the entire table.
setRowIndex
public abstract void setRowIndex(int rowIndex)
getSectionRowIndex
public abstract int getSectionRowIndex()
- The index of this row, relative to the current section
(THEAD, TFOOT, or TBODY).
setSectionRowIndex
public abstract void setSectionRowIndex(int sectionRowIndex)
getCells
public abstract HTMLCollection getCells()
- The collection of cells in this row.
setCells
public abstract void setCells(HTMLCollection cells)
getAlign
public abstract String getAlign()
- Horizontal alignment of data within cells of this row. See the align attribute definition in HTML 4.0.
setAlign
public abstract void setAlign(String align)
getBgColor
public abstract String getBgColor()
- Background color for rows. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.
setBgColor
public abstract void setBgColor(String bgColor)
getCh
public abstract String getCh()
- Alignment character for cells in a column. See the char attribute definition in HTML 4.0.
setCh
public abstract void setCh(String ch)
getChOff
public abstract String getChOff()
- Offset of alignment character. See the charoff attribute definition in HTML 4.0.
setChOff
public abstract void setChOff(String chOff)
getVAlign
public abstract String getVAlign()
- Vertical alignment of data within cells of this row. See the valign attribute definition in HTML 4.0.
setVAlign
public abstract void setVAlign(String vAlign)
insertCell
public abstract HTMLElement insertCell(int index)
- Insert an empty TD cell into this row.
- Parameters:
- index - The place to insert the cell.
- Returns:
- The newly created cell.
deleteCell
public abstract void deleteCell(int index)
- Delete a cell from the current row.
- Parameters:
- index - The index of the cell to delete.
All Packages Class Hierarchy This Package Previous Next Index