ActiveReports.Viewer3 Request technical support
MultiplePageCols Property
See Also  Example


Gets or sets the number of horizontal pages to display when the viewer is in MultiPageMode.

Syntax

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

Return Value

An integer value that represents the number of horizontal pages 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