Page Constructor
Initializes a new instance of the Page class.
Namespace: Microsoft.ReportingServices.ReportRendering
Assembly: Microsoft.ReportingServices.ProcessingCore (in Microsoft.ReportingServices.ProcessingCore.dll)
Syntax
'Declaration
Protected Sub New ( _
pageHeader As PageSection, _
pageFooter As PageSection _
)
'Usage
Dim pageHeader As PageSection
Dim pageFooter As PageSection
Dim instance As New Page(pageHeader, _
pageFooter)
protected Page(
PageSection pageHeader,
PageSection pageFooter
)
protected:
Page(
PageSection^ pageHeader,
PageSection^ pageFooter
)
new :
pageHeader:PageSection *
pageFooter:PageSection -> Page
protected function Page(
pageHeader : PageSection,
pageFooter : PageSection
)
Parameters
- pageHeader
Type: Microsoft.ReportingServices.ReportRendering.PageSection
The PageSection to use as the header of the page.
- pageFooter
Type: Microsoft.ReportingServices.ReportRendering.PageSection
The PageSection to use as the footer of the page.
Remarks
This constructor is called by derived class constructors to initialize state in this type.