Determines whether the ReportExplorer's Report Contents window is visible.
Syntax
Visual Basic (Declaration) | |
---|
Public Property ContentsVisible As System.Boolean |
C# | |
---|
public System.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
C# | Copy Code |
---|
private void Form1_Load(object sender, System.EventArgs e)
{
this.reportExplorer1.ContentsVisible = true;
} |
Visual Basic | Copy Code |
---|
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.ReportExplorer1.ContentsVisible = True
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