Style Label

The complex type CT_CTStyleLabel packages together colors for the different pieces of a diagram. There are six different aspects to a diagram that can be colored independently of one another. Each of the six parts is of type CT_Colors. They are:

  • Fill Colors – The colors that actually fill the shapes in the diagram

  • Line Colors – The colors of the lines on the shapes in the diagram.

  • Effect Colors – The colors of the effects applied to the shapes within the diagram (eg. Glow).

  • Text Line Colors – The colors of the lines on the text within the diagram.

  • Text Fill Colors – The color of the text within the diagram.

  • Text Effect Colors – The colors of the effects applied to the text within the diagram.

The final piece of a style label is simply its name, which is a string. CT_CTStyleLabel is defined as follows:

<xsd:complexType name="CT_CTStyleLabel">
  <xsd:sequence>
    <xsd:element name="fillClrLst" type="CT_Colors"
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="linClrLst" type="CT_Colors"
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="effectClrLst" type="CT_Colors"
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="txLinClrLst" type="CT_Colors"
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="txFillClrLst" type="CT_Colors" 
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="txEffectClrLst" type="CT_Colors" 
      minOccurs="0" maxOccurs="1" />
  </xsd:sequence>
  <xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>