ActiveReports.Viewer3 Request technical support
MultiplePageRows Property
See Also  Example


Gets or sets the number of pages displayed vertically when the viewer is in MultiPageMode.

Syntax

Visual Basic (Declaration) 
Public Property MultiplePageRows As Integer
Visual Basic (Usage)Copy Code
Dim instance As ReportViewerObject
Dim value As Integer
 
instance.MultiplePageRows = value
 
value = instance.MultiplePageRows
C# 
public int MultiplePageRows {get; set;}

Return Value

An integer value that specifies the number of pages displayed vertically in MultiPageMode.

Example

This snippet will show the first two pages of the report side by side.
C#Copy Code
arv.ReportViewer.MultiplePageMode = true;
arv.ReportViewer.MultiplePageCols = 2;
arv.ReportViewer.MultiplePageRows = 1;
Visual BasicCopy Code
arv.ReportViewer.MultiplePageMode = True
arv.ReportViewer.MultiplePageCols = 2
arv.ReportViewer.MultiplePageRows = 1

Remarks

The viewer's document property must be set before setting this property, or it will have no effect.

See Also