ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Document Assembly / GrapeCity.ActiveReports.Document Namespace / SectionDocument Class / Bookmarks Property
Example

In This Topic
    Bookmarks Property (SectionDocument)
    In This Topic
    Gets or sets a reference to the document's bookmarks.
    Syntax
    'Declaration
     
    Public ReadOnly Property Bookmarks As BookmarksCollection
    public BookmarksCollection Bookmarks {get;}
    Example
    private void viewer1_Load(object sender, System.EventArgs e)
    {
        rptDocument rpt = new rptDocument();
        rpt.Run();
        viewer1.Document=rpt.Document;
        MessageBox.Show("There are " + viewer1.Document.Bookmarks.Count.ToString() + " bookmarks.");
    }
    Private Sub Viewer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Viewer1.Load
        Dim rpt As New rptDocument
        rpt.Run()
        Viewer1.Document = rpt.Document
        MsgBox("There are " & Viewer1.Document.Bookmarks.Count.ToString & " bookmarks.")
    End Sub
    See Also