ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Viewer.Win Assembly / GrapeCity.ActiveReports.Viewer.Win Namespace / Viewer Class / PageOffset Property
Example

In This Topic
    PageOffset Property
    In This Topic
    Specifies the location of the page in the viewer.
    Syntax
    'Declaration
     
    Public Property PageOffset As Point
    public Point PageOffset {get; set;}
    Example
    private void Form1_Load(System.Object sender, System.EventArgs e)
    {
    	Viewer1.LoadDocument(new SectionReport1());
    }
    
    private void  Viewer1_LoadCompleted(System.Object sender, System.EventArgs e)
    {
    	Viewer1.PageOffset = new System.Drawing.Point(100, 200);
    }
    Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
            Viewer1.LoadDocument(New SectionReport1())
    End Sub
    
    Private Sub Viewer1_LoadCompleted(sender As System.Object, e As System.EventArgs) Handles Viewer1.LoadCompleted
            Viewer1.PageOffset = New System.Drawing.Point(100, 200)
    End Sub
    See Also