[Table of Contents] [docx version]
SpreadsheetML Reference Material - Table of Contents
colBreaks (Vertical Page Breaks)
Vertical page break information used for print layout view, page layout view, drawing print breaks in normal view, and for printing the worksheet.
[Example:
In this example, a page break has been inserted at C3 (the break occurs left and above C3).
<colBreaks count="1" manualBreakCount="1">
<brk id="2" max="1048575" man="1"/>
</colBreaks>
end example]
Parent Elements |
customSheetView (§3.3.1.23); worksheet (§3.3.1.96) |
Child Elements |
Subclause |
brk (Break) |
§3.3.1.2 |
Attributes |
Description |
count (Page Break Count) |
Number of breaks in the collection.
The possible values for this attribute are defined by the XML Schema unsignedInt datatype. |
manualBreakCount (Manual Break Count) |
Number of manual breaks in the collection.
The possible values for this attribute are defined by the XML Schema unsignedInt datatype. |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_PageBreak">
<sequence>
<element name="brk" type="CT_Break" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="count" type="xsd:unsignedInt" use="optional" default="0"/>
<attribute name="manualBreakCount" type="xsd:unsignedInt" use="optional" default="0"/>
</complexType>