PDFView4NET WinForms Edition
BookmarkClick Event




O2S.Components.PDFView4NET Namespace > PDFBookmarksView Class : BookmarkClick Event
Gets or sets the event that is fired when a bookmark is clicked with the mouse.
Syntax
'Declaration
 
<CategoryAttribute("PDF")>
<DescriptionAttribute("The event that is fired when the bookmark is clicked")>
<DefaultValueAttribute("")>
Public Event BookmarkClick As EventHandler(Of BookmarkClickEventArgs)
'Usage
 
Dim instance As PDFBookmarksView
Dim handler As EventHandler(Of BookmarkClickEventArgs)
 
AddHandler instance.BookmarkClick, handler
[Category("PDF")]
[Description("The event that is fired when the bookmark is clicked")]
[DefaultValue("")]
public event EventHandler<BookmarkClickEventArgs> BookmarkClick
[Category("PDF")]
[Description("The event that is fired when the bookmark is clicked")]
[DefaultValue("")]
public: __event EventHandler<BookmarkClickEventArgs*>* BookmarkClick
[Category("PDF")]
[Description("The event that is fired when the bookmark is clicked")]
[DefaultValue("")]
public:
event EventHandler<BookmarkClickEventArgs^>^ BookmarkClick
Event Data

The event handler receives an argument of type BookmarkClickEventArgs containing data related to this event. The following BookmarkClickEventArgs properties provide information specific to this event.

PropertyDescription
Gets the bookmark that has been clicked.  
Gets the location of the mouse during the generating mouse event.  
Gets the mouse button that was clicked on the bookmark.  
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