[Table of Contents] [docx version]

SpreadsheetML Reference Material - Table of Contents

rowBreaks (Horizontal Page Breaks (Row))

Horizontal page break information used for print layout view, page layout view, drawing print breaks in normal view, and for printing the worksheet.

[Example: This example shows a break inserted at cell B25:

<rowBreaks count="1" manualBreakCount="1">
<brk id="24" max="16383" man="1"/>
</rowBreaks>

end example]

Parent Elements

customSheetView3.3.1.23); worksheet3.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>