ActiveReports 12
ContentsVisible Property
Example 

GrapeCity.ActiveReports.Design.Win.v12 Assembly > GrapeCity.ActiveReports.Design.ReportExplorer Namespace > ReportExplorer Class : ContentsVisible Property
Determines whether the ReportExplorer's Report Contents window is visible.
Syntax
'Declaration
 
Public Property ContentsVisible As Boolean
public bool ContentsVisible {get; set;}

Property Value

Boolean value. If True, the ReportExplorer's Report Contents window is visible. If False, the ReportExplorer's Report Contents window is not visible.
Example
private void Form1_Load(object sender, System.EventArgs e)
{
    this.reportExplorer1.ContentsVisible = true;
}
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Me.ReportExplorer1.ContentsVisible = True
End Sub
See Also

Reference

ReportExplorer Class
ReportExplorer Members