<tbl>
(Table)
This element is the root element for a table. Within this element is contained everything that one would need to define a table within DrawingML.
example:
<a:tbl> <a:tblPr firstRow="1" bandRow="1"> … <a:tblPr> <a:tblGrid> … </a:tblGrid> <a:tr h="419100"> … </a:tr> </a:tbl>
In this example, we see can see the definition of a <table>
within DrawingML. ]
Child Elements |
Subclause |
---|---|
|
|
|
|
|
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_Table">
<sequence>
<element name="tblPr" type="CT_TableProperties" minOccurs="0" maxOccurs="1"/>
<element name="tblGrid" type="CT_TableGrid" minOccurs="1" maxOccurs="1"/>
<element name="tr" type="CT_TableRow" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
</complexType>