ActiveReports 6 Online Help
Bookmarks Property (Document)
Example 

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 arv_Load(object sender, System.EventArgs e)
{
    rptDocument rpt = new rptDocument();
    rpt.Run();
    arv.Document=rpt.Document;
    MessageBox.Show("There are " + arv.Document.Bookmarks.Count.ToString() + " bookmarks.");
}
Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
    Dim rpt As New rptDocument
    rpt.Run()
    arv.Document = rpt.Document
    MsgBox("There are " & arv.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

Reference

Document Class
Document Members
Bookmark Class

Send Feedback