Definition Type: ComplexType
Name: PageBreaksType
Namespace: urn:schemas-microsoft-com:office:excel
Containing Schema: excel.xsd
Abstract
Documentation:
Contains information about page breaks in a spreadsheet.
Collapse XSD Schema Diagram:
Drilldown into RowBreaks in schema excel_xsd Drilldown into ColBreaks in schema excel_xsdXSD Diagram of PageBreaksType in schema excel_xsd (Microsoft Office 2003 Reference Schemas)
Collapse XSD Schema Code:
<xsd:complexType name="PageBreaksType">
    <xsd:annotation>
        <xsd:documentation>Contains information about page breaks in a spreadsheet.</xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
        <xsd:element name="ColBreaks" minOccurs="0">
            <xsd:annotation>
                <xsd:documentation>Specifies the list of columns where page breaks occur.</xsd:documentation>
            </xsd:annotation>
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element name="ColBreak" maxOccurs="unbounded">
                        <xsd:annotation>
                            <xsd:documentation>Contains a single column where a page break occurs.</xsd:documentation>
                        </xsd:annotation>
                        <xsd:complexType>
                            <xsd:sequence>
                                <xsd:element name="Column" type="xsd:int">
                                    <xsd:annotation>
                                        <xsd:documentation>Specifies the index to a column where a page break occurs.</xsd:documentation>
                                    </xsd:annotation>
                                </xsd:element>
                            </xsd:sequence>
                        </xsd:complexType>
                    </xsd:element>
                </xsd:sequence>
            </xsd:complexType>
        </xsd:element>
        <xsd:element name="RowBreaks" minOccurs="0">
            <xsd:annotation>
                <xsd:documentation>Specifies the list of rows where page breaks occur.</xsd:documentation>
            </xsd:annotation>
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element name="RowBreak" maxOccurs="unbounded">
                        <xsd:annotation>
                            <xsd:documentation>Specifies a single row where a page break occurs</xsd:documentation>
                        </xsd:annotation>
                        <xsd:complexType>
                            <xsd:sequence>
                                <xsd:element name="Row" type="RowType">
                                    <xsd:annotation>
                                        <xsd:documentation>Contains information about the row where a page break occurs.</xsd:documentation>
                                    </xsd:annotation>
                                </xsd:element>
                            </xsd:sequence>
                        </xsd:complexType>
                    </xsd:element>
                </xsd:sequence>
            </xsd:complexType>
        </xsd:element>
    </xsd:sequence>
</xsd:complexType>
Collapse Child Elements:
Name Type Min Occurs Max Occurs
ColBreaks x:ColBreaks 0 (1)
RowBreaks x:RowBreaks 0 (1)
Collapse Derivation Tree:
Collapse References:
x:PageBreaks