PDFView4NET WinForms Edition


BookmarkDoubleClick Event
Gets or sets the event that is fired when a bookmark is double clicked with the mouse.
Syntax
'Declaration
 
<CategoryAttribute("PDF")>
<DescriptionAttribute("The event that is fired when the bookmark is double clicked")>
<DefaultValueAttribute("")>
Public Event BookmarkDoubleClick As EventHandler(Of BookmarkClickEventArgs)
'Usage
 
Dim instance As PDFBookmarksView
Dim handler As EventHandler(Of BookmarkClickEventArgs)
 
AddHandler instance.BookmarkDoubleClick, handler
[Category("PDF")]
[Description("The event that is fired when the bookmark is double clicked")]
[DefaultValue("")]
public event EventHandler<BookmarkClickEventArgs> BookmarkDoubleClick
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 10, Windows 11, Windows Server 2022, Windows Server 2025

See Also