Table Grid

The complex type, CT_TableGrid, defines a list of table column elements, or rather CT_TableCol complex types. The CT_TableGrid should contain a CT_TableCol for each column in the table and it is defined in the following manner:

<xsd:complexType name="CT_TableGrid">
  <xsd:sequence>
    <xsd:element name="gridCol" type="CT_TableCol" minOccurs="0" 
      maxOccurs="unbounded" />
  </xsd:sequence>
</xsd:complexType>