Layout Property Set

The complex type CT_LayoutPropertySet holds all of the layout properties for a given diagram. The layout property set is a single structure which contains most of what has been talked about thus far in a diagram definition. The layout property set is defined as:

<xsd:complexType name="CT_LayoutVariablePropertySet">
  <xsd:sequence>
    <xsd:element name="orgChart" type="CT_OrgChart" 
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="chMax" type="CT_ChildMax" minOccurs="0" 
      maxOccurs="1" />
    <xsd:element name="chPref" type="CT_ChildPref" 
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="bulletEnabled" type="CT_BulletEnabled" 
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="dir" type="CT_Direction" minOccurs="0" 
      maxOccurs="1" />
    <xsd:element name="hierBranch" type="CT_HierBranchStyle" 
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="animOne" type="CT_AnimOne" minOccurs="0" 
      maxOccurs="1" />
    <xsd:element name="animLvltype="CT_AnimLvl" minOccurs="0" 
      maxOccurs="1" />
  </xsd:sequence>
</xsd:complexType>

Because all of the contents of this complex type have already been discussed, no further detail on this complex type needs to be given.