org.kde.koala
Class HTMLTableSectionElement

java.lang.Object
  extended by org.kde.koala.Node
      extended by org.kde.koala.Element
          extended by org.kde.koala.HTMLElement
              extended by org.kde.koala.HTMLTableSectionElement
All Implemented Interfaces:
org.kde.qt.QtSupport

public class HTMLTableSectionElement
extends HTMLElement

The THEAD , TFOOT , and TBODY elements.


Constructor Summary
  HTMLTableSectionElement()
           
protected HTMLTableSectionElement(java.lang.Class dummy)
           
  HTMLTableSectionElement(HTMLTableSectionElement other)
           
  HTMLTableSectionElement(Node other)
           
 
Method Summary
 java.lang.String align()
          Horizontal alignment of data in cells.
 java.lang.String ch()
          Alignment character for cells in a column.
 java.lang.String chOff()
          Offset of alignment character.
 void deleteRow(long index)
          Delete a row from this section.
 HTMLElement insertRow(long index)
          Insert a row into this section.
 HTMLCollection rows()
          The collection of rows in this table section.
 void setAlign(java.lang.String arg1)
          see align
 void setCh(java.lang.String arg1)
          see ch
 void setChOff(java.lang.String arg1)
          see chOff
 void setVAlign(java.lang.String arg1)
          see vAlign
 java.lang.String vAlign()
          Vertical alignment of data in cells.
 
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.Element
contentEditable, form, getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, hasAttribute, hasAttributeNS, isHTMLElement, khtmlMalformedPrefix, khtmlMalformedQualifiedName, khtmlValidAttrName, khtmlValidPrefix, khtmlValidQualifiedName, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setContentEditable, style, tagName
 
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

HTMLTableSectionElement

protected HTMLTableSectionElement(java.lang.Class dummy)

HTMLTableSectionElement

public HTMLTableSectionElement()

HTMLTableSectionElement

public HTMLTableSectionElement(HTMLTableSectionElement other)

HTMLTableSectionElement

public HTMLTableSectionElement(Node other)
Method Detail

align

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


setAlign

public void setAlign(java.lang.String arg1)
see align


ch

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


setCh

public void setCh(java.lang.String arg1)
see ch


chOff

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


setChOff

public void setChOff(java.lang.String arg1)
see chOff


vAlign

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


setVAlign

public void setVAlign(java.lang.String arg1)
see vAlign


rows

public HTMLCollection rows()
The collection of rows in this table 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.

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.