[Table of Contents] [docx version]
Error! No text of specified style in document.
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: Consider the following example of a tbl within DrawingML:
<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. end example]
Child Elements |
Subclause |
tblGrid (Table Grid) |
§5.1.6.12 |
tblPr (Table Properties) |
§5.1.6.13 |
tr (Table Row) |
§5.1.6.16 |
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>