2.292 PageBreak

Applies to RDL 2008/01, RDL 2010/01, and RDL 2016/01

The PageBreak element specifies page break behavior for a rectangle, data region, or group.

The following are the parent and child elements of the PageBreak element.

Parent elements

Rectangle

Group

Chart

Tablix

GaugePanel

Map

Child elements

PageBreak.BreakLocation

PageBreak.Disabled

PageBreak.ResetPageNumber

The following is the XML Schema definition of the PageBreak element in RDL 2003/10, RDL 2005/01, and RDL 2008/01.

 <xsd:complexType name="PageBreakType">
   <xsd:choice minOccurs="1" maxOccurs="unbounded">
     <xsd:element name="BreakLocation" minOccurs="1">
       <xsd:simpleType>
         <xsd:restriction base="xsd:string">
           <xsd:enumeration value="None" />
           <xsd:enumeration value="Start" />
           <xsd:enumeration value="End" />
           <xsd:enumeration value="StartAndEnd" />
           <xsd:enumeration value="Between" />
         </xsd:restriction>
       </xsd:simpleType>
     </xsd:element>
     <xsd:any namespace="##other" processContents="skip" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="skip" />
 </xsd:complexType>

Following is the XML Schema definition of the PageBreak element in RDL 2010/01 and RDL 2016/01.

 <xsd:complexType name="PageBreakType">
   <xsd:choice minOccurs="1" maxOccurs="unbounded">
     <xsd:element name="Disabled" type="xsd:string" minOccurs="0" />
     <xsd:element name="ResetPageNumber" type="xsd:string" minOccurs="0" />
     <xsd:element name="BreakLocation" minOccurs="1">
       <xsd:simpleType>
         <xsd:restriction base="xsd:string">
           <xsd:enumeration value="None" />
           <xsd:enumeration value="Start" />
           <xsd:enumeration value="End" />
           <xsd:enumeration value="StartAndEnd" />
           <xsd:enumeration value="Between" />
         </xsd:restriction>
       </xsd:simpleType>
     </xsd:element>
     <xsd:any namespace="##other" processContents="lax" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="lax" />
 </xsd:complexType>