ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Document Assembly / GrapeCity.ActiveReports.Document.Section Namespace / BookmarksCollection Class / FillTree Method
Specifies the TreeView control to be filled with the bookmark objects.
Example

In This Topic
    FillTree Method
    In This Topic
    Loads the Bookmark objects into the Windows Forms TreeView control.
    Syntax
    'Declaration
     
    Public Sub FillTree( _
       ByVal treeView As TreeView _
    ) 
    public void FillTree( 
       TreeView treeView
    )

    Parameters

    treeView
    Specifies the TreeView control to be filled with the bookmark objects.
    Remarks
    You can use this method to fill any TreeView with the bookmarks collection and customize the look and feel of the Table of Contents.
    Example
    private void frmViewer_Load(object sender, System.EventArgs e)
    {
       arv.Document.Bookmarks.FillTree(treeView1);
    }
    Private Sub frmViewer_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
        arv.Document.Bookmarks.FillTree(TreeView1)
    End Sub
    See Also