ActiveReports 6 Online Help
Visible Property (TableOfContentsObject)
Example 

Gets or sets a value that determines whether the viewer's table of contents tree is visible.
Syntax
'Declaration
 
Public Property Visible As Boolean
public bool Visible {get; set;}

Property Value

A Boolean value. True when the table of contents tree is visible; otherwise, False.  The default value is True.

Example
private void arv_Load(object sender, System.EventArgs e)
{
    rptDD rpt = new rptDD();
    rpt.Run();
    arv.Document = rpt.Document;
    
    arv.TableOfContents.Enabled = true;
    arv.TableOfContents.Text = "Country";
    arv.TableOfContents.Visible = true;
    arv.TableOfContents.Width = 150;
}
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.TableOfContents.Enabled = True
    arv.TableOfContents.Text = "Country"
    arv.TableOfContents.Visible = True
    arv.TableOfContents.Width = 150
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

Reference

TableOfContentsObject Class
TableOfContentsObject Members

Send Feedback