ActiveReports 6 Online Help
MoveToBookmark Method
Example 

The bookmark to which to navigate.
Allows the user to navigate to a bookmark.
Syntax
'Declaration
 
Public Sub MoveToBookmark( _
   ByVal bookmark As Bookmark _
) 
public void MoveToBookmark( 
   Bookmark bookmark
)

Parameters

bookmark
The bookmark to which to navigate.
Example
private void btnGoTo_Click(object sender, System.EventArgs e)
{
    arv.ReportViewer.MoveToBookmark(arv.Document.Bookmarks[14]);
}
Private Sub btnGoTo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGoTo.Click
    arv.ReportViewer.MoveToBookmark(arv.Document.Bookmarks(14))
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

ReportViewerObject Class
ReportViewerObject Members

Send Feedback