ActiveReports.Viewer3 Request technical support
ReportViewer Property
See Also  Example


Gets a reference to the ReportViewerObject properties.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property ReportViewer As ReportViewerObject
Visual Basic (Usage)Copy Code
Dim instance As Viewer
Dim value As ReportViewerObject
 
value = instance.ReportViewer
C# 
public ReportViewerObject ReportViewer {get;}

Return Value

A ReportViewerObject value used to set the viewer's ReportViewer options.

Example

Visual BasicCopy Code
Private void arv_Load(object sender, System.EventArgs e)
{
    rptDD rpt = New rptDD();
    rpt.Run();
    arv.Document = rpt.Document;
    arv.ReportViewer.PageOffset=300;
}
Visual BasicCopy Code
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

Remarks

This property is used to set the options of the ReportViewer component within the control.

See Also