See Also

ReportViewerObject Class  | ReportViewerObject Members

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports.Viewer Send feedback to Data Dynamics

MultiplePageCols Property

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

[Visual Basic]
Public Property MultiplePageCols As Integer
[C#]
public int MultiplePageCols {get; set;}

Return Type

An integer value that represents the number of horizontal pages in MultiPageMode.

Remarks

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

Example

This snippet will show the first two pages of the report side by side.

[C#] 

arv.ReportViewer.MultiplePageMode = true; 
arv.ReportViewer.MultiplePageCols = 2; 
arv.ReportViewer.MultiplePageRows = 1;

[Visual Basic] 

arv.ReportViewer.MultiplePageMode = True
arv.ReportViewer.MultiplePageCols = 2
arv.ReportViewer.MultiplePageRows = 1

See Also

ReportViewerObject Class  | ReportViewerObject Members

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.