<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>
Child Elements |
Subclause |
---|---|
|
Attributes |
Description |
---|---|
|
Number of breaks in the collection. The possible values for this attribute are defined by the XML Schema unsignedInt datatype. |
|
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>