ActiveReports 8
Bookmarks Property
See Also  Example
GrapeCity.ActiveReports.Document.v8 Assembly > GrapeCity.ActiveReports.Document Namespace > SectionDocument Class : Bookmarks Property

Glossary Item Box

Gets or sets a reference to the document's bookmarks.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Bookmarks As BookmarksCollection
C# 
public BookmarksCollection Bookmarks {get;}

Example

C#Copy Code
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.");
}
Visual BasicCopy Code
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

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