ActiveReports 6 Online Help
RepositionPage Property
Example 

Determines whether the viewer will reposition the view to the top of the page when a user goes to another page after scrolling downward in a page.
Syntax
'Declaration
 
Public Property RepositionPage As Boolean
public bool RepositionPage {get; set;}

Property Value

Boolean value. If True, the viewer will reposition the view to the top of the page. If False, the viewer will persist the current position of the page to all pages. The default value is False.
Example
private void arv_Load(object sender, System.EventArgs e)
{
    rptDD rpt = new rptDD();
    rpt.Run();
    arv.Document = rpt.Document;
    arv.ReportViewer.RepositionPage = true;
}
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.RepositionPage = True
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