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 Basic | Copy Code |
|---|
arv.ReportViewer.MultiplePageMode = True
arv.ReportViewer.MultiplePageCols = 2
arv.ReportViewer.MultiplePageRows = 1 |
Remarks
See Also