//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.QtSupport; /** A row in a table. See the TR element definition in HTML 4.0. @short A row in a table. */ public class HTMLTableRowElement extends HTMLElement { protected HTMLTableRowElement(Class dummy){super((Class) null);} public HTMLTableRowElement() { super((Class) null); newHTMLTableRowElement(); } private native void newHTMLTableRowElement(); public HTMLTableRowElement(HTMLTableRowElement other) { super((Class) null); newHTMLTableRowElement(other); } private native void newHTMLTableRowElement(HTMLTableRowElement other); public HTMLTableRowElement(Node other) { super((Class) null); newHTMLTableRowElement(other); } private native void newHTMLTableRowElement(Node other); /** The index of this row, relative to the entire table. This is in logical order and not in document order. The rowIndex does take into account sections (THEAD, TFOOT or TBODY) within the table, placing THEAD rows first in the index, followed by TBODY rows, followed by TFOOT rows. @short The index of this row, relative to the entire table. */ public native long rowIndex(); /** 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) @short see rowIndex */ public native void setRowIndex(long arg1); /** The index of this row, relative to the current section ( THEAD , TFOOT , or TBODY ). @short The index of this row, relative to the current section ( THEAD , TFOOT , or TBODY ). */ public native long sectionRowIndex(); /** 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) @short see sectionRowIndex */ public native void setSectionRowIndex(long arg1); /** The collection of cells in this row. @short The collection of cells in this row. */ public native HTMLCollection cells(); /** 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) @short see cells */ public native void setCells(HTMLCollection arg1); /** Horizontal alignment of data within cells of this row. See the align attribute definition in HTML 4.0. @short Horizontal alignment of data within cells of this row. */ public native String align(); /** see align @short see align */ public native void setAlign(String arg1); /** Background color for rows. See the bgcolor attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0. @short Background color for rows. */ public native String bgColor(); /** see bgColor @short see bgColor */ public native void setBgColor(String arg1); /** Alignment character for cells in a column. See the char attribute definition in HTML 4.0. @short Alignment character for cells in a column. */ public native String ch(); /** see ch @short see ch */ public native void setCh(String arg1); /** Offset of alignment character. See the charoff attribute definition in HTML 4.0. @short Offset of alignment character. */ public native String chOff(); /** see chOff @short see chOff */ public native void setChOff(String arg1); /** Vertical alignment of data within cells of this row. See the valign attribute definition in HTML 4.0. @short Vertical alignment of data within cells of this row. */ public native String vAlign(); /** see vAlign @short see vAlign */ public native void setVAlign(String arg1); /** Insert an empty TD cell into this row. If index is -1 or equal to the number of cells, the new cell is appended. @param index The place to insert the cell. @return The newly created cell. @short Insert an empty TD cell into this row. */ public native HTMLElement insertCell(long index); /** Delete a cell from the current row. @param index The index of the cell to delete, starting from 0. If the index is -1 the last cell in the row is deleted. @short Delete a cell from the current row. */ public native void deleteCell(long index); // DOM::HTMLTableRowElement* HTMLTableRowElement(DOM::HTMLTableRowElementImpl* arg1); >>>> NOT CONVERTED }