Table Part Style

The complex type, CT_TablePartStyle, defines a structure for holding the style information for a single part of the table. The table is broken up in 13 different parts which will be explained in the next subclause of this document. A table part contains a text style and a cell style and is defined in the following manner:

<xsd:complexType name="CT_TablePartStyle">
  <xsd:sequence>
    <xsd:element name="tcTxStyle" type="CT_TableStyleTextStyle" 
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="tcStyle" type="CT_TableStyleCellStyle" 
      minOccurs="0" maxOccurs="1" />
  </xsd:sequence>
</xsd:complexType>