<xsd:element name="Layout" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Contains information related to page layout.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:attribute name="Orientation" use="optional" default="Portrait" form="qualified">
<xsd:annotation>
<xsd:documentation>Specifies whether the page orientation is portrait or landscape</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Landscape" />
<xsd:enumeration value="Portrait" />
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="CenterHorizontal" use="optional" type="OneZeroType" default="0" form="qualified">
<xsd:annotation>
<xsd:documentation>Specifies whether the worksheet is centered horizontally on the page when it is printed.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="CenterVertical" use="optional" type="OneZeroType" default="0" form="qualified">
<xsd:annotation>
<xsd:documentation>Specifies whether the worksheet is centered vertically on the page when it is printed.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="StartPageNumber" type="xsd:string" use="optional" default="1" form="qualified">
<xsd:annotation>
<xsd:documentation>Specifies the first page number that will be used when the worksheet is printed.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
|