ActiveReports 6 Online Help
ReportViewer Property
Example 

Gets a reference to the ReportViewerObject properties.
Syntax
'Declaration
 
Public ReadOnly Property ReportViewer As ReportViewerObject
public ReportViewerObject ReportViewer {get;}

Property Value

A ReportViewerObject value used to set the viewer's ReportViewer options.
Remarks
This property is used to set the options of the ReportViewer component within the control.
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

Viewer Class
Viewer Members

Send Feedback