ActiveReports 6 Online Help
PageOffset Property
Example 

Specifies the location of the page in the viewer.
Syntax
'Declaration
 
Public Property PageOffset As Integer
public int PageOffset {get; set;}

Property Value

Integer. The default value is 0.
Remarks
This property must be set after a document is loaded into the viewer, or it will have no effect.
Example
private void arv_Load(object sender, System.EventArgs e)
{
    rptDD rpt = new rptDD();
    rpt.Run();
    arv.Document = rpt.Document;
    arv.ReportViewer.PageOffset=300;
}
Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
    Dim rpt As New rptDD
    rpt.Run()
    arv.Document = rpt.Document
    arv.ReportViewer.PageOffset = 300
End Sub
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