'Declaration
<CategoryAttribute("PDF")> <DescriptionAttribute("Fired when an existing bookmark has been removed from the document")> <DefaultValueAttribute("")> Public Event BookmarkRemoved As EventHandler(Of BookmarkEventArgs)
'Usage
Dim instance As PDFDocument Dim handler As EventHandler(Of BookmarkEventArgs) AddHandler instance.BookmarkRemoved, handler
[Category("PDF")] [Description("Fired when an existing bookmark has been removed from the document")] [DefaultValue("")] public event EventHandler<BookmarkEventArgs> BookmarkRemoved
[Category("PDF")] [Description("Fired when an existing bookmark has been removed from the document")] [DefaultValue("")] public: __event EventHandler<BookmarkEventArgs*>* BookmarkRemoved
[Category("PDF")] [Description("Fired when an existing bookmark has been removed from the document")] [DefaultValue("")] public: event EventHandler<BookmarkEventArgs^>^ BookmarkRemoved
Event Data
The event handler receives an argument of type BookmarkEventArgs containing data related to this event. The following BookmarkEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Bookmark | Gets the bookmark that has been acted upon. |
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