TableOfContentsClick Event
Occurs when the user clicks an item in the table of contents treeview.
[Visual Basic]
Public Event TableOfContentsClick() As EventHandler
[C#]
public event EventHandler TableOfContentsClick();
Example
[C#]
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 Basic]
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
Viewer Class
| Viewer Members
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.