|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kde.koala.Node
org.kde.koala.Element
org.kde.koala.HTMLElement
org.kde.koala.HTMLTableRowElement
public class HTMLTableRowElement
A row in a table. See the TR element definition in HTML 4.0.
Constructor Summary | |
---|---|
|
HTMLTableRowElement()
|
protected |
HTMLTableRowElement(java.lang.Class dummy)
|
|
HTMLTableRowElement(HTMLTableRowElement other)
|
|
HTMLTableRowElement(Node other)
|
Method Summary | |
---|---|
java.lang.String |
align()
Horizontal alignment of data within cells of this row. |
java.lang.String |
bgColor()
Background color for rows. |
HTMLCollection |
cells()
The collection of cells in this row. |
java.lang.String |
ch()
Alignment character for cells in a column. |
java.lang.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(java.lang.String arg1)
see align |
void |
setBgColor(java.lang.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(java.lang.String arg1)
see ch |
void |
setChOff(java.lang.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(java.lang.String arg1)
see vAlign |
java.lang.String |
vAlign()
Vertical alignment of data within cells of this row. |
Methods inherited from class org.kde.koala.HTMLElement |
---|
addCSSProperty, all, assignOther, children, className, dir, id, innerHTML, innerText, lang, removeCSSProperty, setClassName, setDir, setId, setInnerHTML, setInnerText, setLang, setTitle, title |
Methods inherited from class org.kde.koala.Node |
---|
addEventListener, appendChild, applyChanges, attributes, childNodes, cloneNode, dispatchEvent, elementId, firstChild, getRect, hasAttributes, hasChildNodes, index, insertBefore, isNull, isSupported, lastChild, localName, namespaceURI, nextSibling, nodeName, nodeType, nodeValue, normalize, op_equals, op_not_equals, ownerDocument, parentNode, prefix, previousSibling, removeChild, removeEventListener, replaceChild, setNodeValue, setPrefix |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected HTMLTableRowElement(java.lang.Class dummy)
public HTMLTableRowElement()
public HTMLTableRowElement(HTMLTableRowElement other)
public HTMLTableRowElement(Node other)
Method Detail |
---|
public long rowIndex()
public void setRowIndex(long arg1)
public long sectionRowIndex()
THEAD
, TFOOT
, or TBODY
).
public void setSectionRowIndex(long arg1)
public HTMLCollection cells()
public void setCells(HTMLCollection arg1)
public java.lang.String align()
public void setAlign(java.lang.String arg1)
public java.lang.String bgColor()
public void setBgColor(java.lang.String arg1)
public java.lang.String ch()
public void setCh(java.lang.String arg1)
public java.lang.String chOff()
public void setChOff(java.lang.String arg1)
public java.lang.String vAlign()
public void setVAlign(java.lang.String arg1)
public HTMLElement insertCell(long index)
TD
cell into this row.
If index is -1 or equal to the number of cells, the new
cell is appended.
index
- The place to insert the cell.
public void deleteCell(long index)
index
- The index of the cell to delete, starting from 0.
If the index is -1 the last cell in the row is deleted.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |