ActiveReports.Viewer3 Request technical support
Offset Property
See Also  Example


Gets or sets the location of the bookmark relative to the top of the page.

Syntax

Visual Basic (Declaration) 
Public Property Offset As Single
Visual Basic (Usage)Copy Code
Dim instance As Bookmark
Dim value As Single
 
instance.Offset = value
 
value = instance.Offset
C# 
public float Offset {get; set;}

Return Value

A float value that represents the location of the bookmark in inches.

Example

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

See Also