Specifies a PivotList specific complex type.
| Namespace | urn:schemas-microsoft-com:office:excel | 
| Schema name | XML Spreadsheet 2000 | 
| Element | Description | 
|---|---|
| Horizontal | Specifies the type of horizontal alignment. | 
| Rotation | Specifies that the content is rotated. | 
| Vertical | Specifies the type of vertical alignment. | 
| ReadingOrder | Specifies the direction of text. | 
None.
      
<xsd:complexType name="AlignmentType" >
  <xsd:sequence>
    <xsd:element name="Horizontal" minOccurs="0">
      <xsd:simpleType>
        <xsd:restriction base="xsd:string">
          <xsd:enumeration value="Automatic" />
          <xsd:enumeration value="Center" />
          <xsd:enumeration value="Distributed" />
          <xsd:enumeration value="Justify" />
          <xsd:enumeration value="Left" />
          <xsd:enumeration value="Right." />
        </xsd:restriction>
      </xsd:simpleType>
    </xsd:element>
    <xsd:element name="Rotation" type="xsd:int" minOccurs="0">
    </xsd:element>
    <xsd:element name="Vertical" minOccurs="0">
      <xsd:simpleType>
        <xsd:restriction base="xsd:string">
          <xsd:enumeration value="Automatic" />
          <xsd:enumeration value="Bottom" />
          <xsd:enumeration value="Center" />
          <xsd:enumeration value="Distributed" />
          <xsd:enumeration value="Justify" />
          <xsd:enumeration value="Top" />
        </xsd:restriction>
      </xsd:simpleType>
    </xsd:element>
    <xsd:element name="ReadingOrder" minOccurs="0">
      <xsd:simpleType>
        <xsd:restriction base="xsd:string">
          <xsd:enumeration value="Context" />
          <xsd:enumeration value="LeftToRight" />
          <xsd:enumeration value="RightToLeft" />
        </xsd:restriction>
      </xsd:simpleType>
    </xsd:element>
  </xsd:sequence>
</xsd:complexType>