PDFView4NET WinForms Edition
BookmarkRemoved Event




O2S.Components.PDFView4NET Namespace > PDFDocument Class : BookmarkRemoved Event
Gets or sets the event being fired when an existing bookmark has been removed from the document.
Syntax
'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.

PropertyDescription
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