Definition Type: Element
Name: Layout
Namespace: urn:schemas-microsoft-com:office:excel
Containing Schema: excel.xsd
MinOccurs 0
MaxOccurs (1)
Abstract
Documentation:
Contains information related to page layout.
Collapse XSD Schema Diagram:
Drilldown into StartPageNumber in schema excel_xsd Drilldown into CenterVertical in schema excel_xsd Drilldown into CenterHorizontal in schema excel_xsd Drilldown into Orientation in schema excel_xsdXSD Diagram of Layout in schema excel_xsd (Microsoft Office 2003 Reference Schemas)
Collapse XSD Schema Code:
<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>
Collapse Child Attributes:
Name Type Default Value Use
Orientation x:Orientation Portrait Optional
CenterHorizontal x:CenterHorizontal 0 Optional
CenterVertical x:CenterVertical 0 Optional
StartPageNumber x:StartPageNumber 1 Optional