ActiveReports 6 Online Help
ViewType Property (ReportViewerObject)
Example 

Gets or sets a value that determines whether the viewer shows pages in Normal or ContinuousScroll mode.
Syntax
'Declaration
 
Public Property ViewType As ViewType
public ViewType ViewType {get; set;}
Example
Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
    arv.ReportViewer.ViewType = DataDynamics.ActiveReports.Viewer6.ViewType.ContinuousScroll
    Dim rpt As New rptDD
    rpt.Run()
    arv.Document = rpt.Document
End Sub
private void arv_Load(object sender, System.EventArgs e) 
{ 
    arv.ReportViewer.ViewType = DataDynamics.ActiveReports.Viewer6.ViewType.ContinuousScroll;
    rptDD rpt = new rptDD(); 
    rpt.Run(); 
    arv.Document = rpt.Document; 
}
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
ViewType Enumeration

Send Feedback