See Also

ReportViewerObject Class  | ReportViewerObject Members

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports.Viewer Send feedback to Data Dynamics

SplitView Property

Gets or sets a value that determines whether the viewer is split into two views.

[Visual Basic]
Public Property SplitView As Boolean
[C#]
public bool SplitView {get; set;}

Return Type

A Boolean value. True if the report viewer has two views; otherwise, False.  The default value is False.

Example

[C#] 

private void arv_Load(object sender, System.EventArgs e) 

    rptDD rpt = new rptDD(); 
    rpt.Run(); 
    arv.Document = rpt.Document; 
    arv.ReportViewer.SplitView = true; 
}

[Visual Basic] 

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.SplitView = True
End Sub

See Also

ReportViewerObject Class  | ReportViewerObject Members

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.