ActiveReports 6 Online Help
MultiplePageMode Property
Example 

Gets or sets a value indicating whether to display multiple pages in the viewer. 
Syntax
'Declaration
 
Public Property MultiplePageMode As Boolean
public bool MultiplePageMode {get; set;}

Property Value

A Boolean value. True if the viewer is displaying multiple pages at a time in rows and columns; otherwise, False.  The default value is False.
Example
This snippet will show the first two pages of the report side by side.
arv.ReportViewer.MultiplePageMode = true;
arv.ReportViewer.MultiplePageCols = 2;
arv.ReportViewer.MultiplePageRows = 1;
arv.ReportViewer.MultiplePageMode = True
arv.ReportViewer.MultiplePageCols = 2
arv.ReportViewer.MultiplePageRows = 1
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ReportViewerObject Class
ReportViewerObject Members

Send Feedback