Table

The final complex type, CT_Table, is the root element for a table. This complex type holds all the information that is needed to create a table within DrawingML. Within CT_Table are the table properties, a table grid, and a table row. A CT_Table is defined in the following manner:

<xsd:complexType name="CT_Table">
  <xsd:sequence>
    <xsd:element name="tblPr" type="CT_TableProperties" minOccurs="0" 
      maxOccurs="1" />
    <xsd:element name="tblGrid" type="CT_TableGrid" minOccurs="1" 
      maxOccurs="1" />
    <xsd:element name="tr" type="CT_TableRow" minOccurs="0" 
      maxOccurs="unbounded" />
  </xsd:sequence>
</xsd:complexType>