Determines whether the ReportExplorer's Fields window is visible.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property FieldsVisible As System.Boolean |
| C# | |
|---|
public System.bool FieldsVisible {get; set;} |
Property Value
Boolean value. If
True, the Report Explorer's Fields window is visible. If
False, the Report Explorer's Fields window is not visible.
Example
| C# | Copy Code |
|---|
private void Form1_Load(object sender, System.EventArgs e)
{
this.reportExplorer1.FieldsVisible = true;
} |
| Visual Basic | Copy Code |
|---|
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.ReportExplorer1.FieldsVisible = True
End Sub |
See Also