2.9 PageSection

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

The PageSection element specifies the structure and layout information for the page header or page footer of a rendered Page in a report in RDL 2008/01 or a ReportSection in RDL 2010/01 and RDL 2016/01. This element is optional.

The following are elements that are referenced by the PageSection element, its parent element, and its child elements.

Referenced by

Page.PageHeader

Page.PageFooter

Parent elements

Page

Child elements

PageSection.Style

PageSection.Height

PageSection.PrintOnFirstPage

PageSection.PrintOnLastPage

PageSection.PrintBetweenSections

PageSection.ReportItems

The following is the XML Schema definition of the PageSection element in RDL 2008/01.

 <xsd:complexType name="PageSectionType">
   <xsd:choice minOccurs="1" maxOccurs="unbounded">
     <xsd:element name="Height" type="SizeType" />
     <xsd:element name="PrintOnFirstPage" type="xsd:boolean" minOccurs="0" />
     <xsd:element name="PrintOnLastPage" type="xsd:boolean" minOccurs="0" />
     <xsd:element name="ReportItems" type="ReportItemsType" minOccurs="0" />
     <xsd:element name="Style" type="StyleType" minOccurs="0" />
     <xsd:any namespace="##other" processContents="skip" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="skip" />
 </xsd:complexType>

The following is the XML Schema definition of the PageSection element in RDL 2010/01 and RDL 2016/01.

 <xsd:complexType name="PageSectionType">
   <xsd:choice minOccurs="1" maxOccurs="unbounded">
     <xsd:element name="Height" type="SizeType" />
     <xsd:element name="PrintOnFirstPage" type="xsd:boolean" minOccurs="0" />
     <xsd:element name="PrintOnLastPage" type="xsd:boolean" minOccurs="0" />
     <xsd:element name="PrintBetweenSections" type="xsd:boolean" minOccurs="0" />
     <xsd:element name="ReportItems" type="ReportItemsType" minOccurs="0" />
     <xsd:element name="Style" type="StyleType" minOccurs="0" />
     <xsd:any namespace="##other" processContents="lax" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="lax" />
 </xsd:complexType>