ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Document Assembly / GrapeCity.ActiveReports.Document.Section Namespace / BookmarksCollection Class / CurrentBookmark Property
Example

In This Topic
    CurrentBookmark Property
    In This Topic
    Returns the index of the currently selected bookmark.
    Syntax
    'Declaration
     
    Public Property CurrentBookmark As Integer
    public int CurrentBookmark {get; set;}

    Property Value

    An integer value that represents the number of bookmark objects in the collection.
    Example
    private void arv_TableOfContentsClick(object sender, System.EventArgs e)
    {
        int toc;
        toc = arv.Document.Bookmarks.CurrentBookmark;
        MessageBox.Show ("You are leaving the bookmark at page " + arv.Document.Bookmarks[toc].PageNumber.ToString() + ", " + arv.Document.Bookmarks[toc].Offset.ToString() + " inches from the top of the page.");
    }
    Private Sub arv_TableOfContentsClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles arv.TableOfContentsClick
        Dim toc As Integer
        toc = arv.Document.Bookmarks.CurrentBookmark
        MsgBox("You are leaving the bookmark at page " & arv.Document.Bookmarks(toc).PageNumber.ToString & ", " & arv.Document.Bookmarks(toc).Offset.ToString & " inches from the top of the page.")
    End Sub
    See Also