PDFView4NET WinForms Edition
BookmarkAdded Event




O2S.Components.PDFView4NET Namespace > PDFDocument Class : BookmarkAdded Event
Gets or sets the event being fired when a new bookmark has been added to the document.
Syntax
'Declaration
 
<CategoryAttribute("PDF")>
<DescriptionAttribute("Fired when a new bookmark has been added to the document")>
<DefaultValueAttribute("")>
Public Event BookmarkAdded As EventHandler(Of BookmarkEventArgs)
'Usage
 
Dim instance As PDFDocument
Dim handler As EventHandler(Of BookmarkEventArgs)
 
AddHandler instance.BookmarkAdded, handler
[Category("PDF")]
[Description("Fired when a new bookmark has been added to the document")]
[DefaultValue("")]
public event EventHandler<BookmarkEventArgs> BookmarkAdded
[Category("PDF")]
[Description("Fired when a new bookmark has been added to the document")]
[DefaultValue("")]
public: __event EventHandler<BookmarkEventArgs*>* BookmarkAdded
[Category("PDF")]
[Description("Fired when a new bookmark has been added to the document")]
[DefaultValue("")]
public:
event EventHandler<BookmarkEventArgs^>^ BookmarkAdded
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