Contains information about page breaks in a spreadsheet.
Namespace | urn:schemas-microsoft-com:office:excel |
Schema name | XML Spreadsheet 2000 |
Element | Description |
---|---|
ColBreaks | Specifies the list of columns where page breaks occur. |
ColBreak | Contains a single column where a page break occurs. |
Column | Specifies the index to a column where a page break occurs. |
RowBreaks | Specifies the list of rows where page breaks occur. |
RowBreak | Specifies a single row where a page break occurs |
Row | Contains information about the row where a page break occurs. |
None.
<xsd:complexType name="PageBreaksType" >
<xsd:sequence>
<xsd:element name="ColBreaks" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="ColBreak" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Column" type="xsd:int">
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="RowBreaks" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="RowBreak" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Row" type="RowType">
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>