'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
[Category("PDF")] [Description("The event that is fired when the bookmark is double clicked")] [DefaultValue("")] public: __event EventHandler<BookmarkClickEventArgs*>* BookmarkDoubleClick
[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.
Property | Description |
---|---|
Bookmark | Gets the bookmark that has been clicked. |
Location | Gets the location of the mouse during the generating mouse event. |
MouseButton | 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