
Mozilla::DOM::HTMLTableElement
Mozilla::DOM::HTMLTableElement is a wrapper around an instance of Mozilla's nsIDOMHTMLTableElement interface. This class inherits from HTMLElement.
* The nsIDOMHTMLTableElement interface is the interface to a [X]HTML * table element. * * For more information on this interface please see * http://www.w3.org/TR/DOM-Level-2-HTML/ * * @status FROZEN

Pass this to QueryInterface.

- $index (integer (long))
A collection of all the rows in the table, including all in THEAD, TFOOT, all TBODY elements (think of <tr>).
$rows is a Mozilla::DOM::HTMLCollection.
In list context, returns a list of Mozilla::DOM::HTMLTableRowElement.
A collection of the table bodies (including implicit ones) (<tbody>). (I'm not sure what this is useful for.)
$tbodies is a Mozilla::DOM::HTMLCollection.
In list context, returns a list of Mozilla::DOM::HTMLElement. (I didn't see a more specific HTML element to QueryInterface it to.)
- $index (integer (long))
- $align (string)
- $bgcolor (string)
- $border (string)
- $caption (Mozilla::DOM::HTMLTableCaptionElement)
- $cellpadding (string)
- $cellspacing (string)
- $frame (string)
- $rules (string)
- $summary (string)
- $tfoot (Mozilla::DOM::HTMLTableSectionElement)
- $thead (Mozilla::DOM::HTMLTableSectionElement)
- $width (string)


Copyright (C) 2005-2007, Scott Lanning
This software is licensed under the LGPL. See Mozilla::DOM for a full notice.