PDFView4NET WPF Edition
BeforeLinkExecute Event




O2S.Components.PDFView4NET.WPF Namespace > PDFPageView Class : BeforeLinkExecute Event
Gets or sets the event that is fired before a link is executed.
Syntax
'Declaration
 
Public Event BeforeLinkExecute As EventHandler(Of BeforeLinkExecuteEventArgs)
'Usage
 
Dim instance As PDFPageView
Dim handler As EventHandler(Of BeforeLinkExecuteEventArgs)
 
AddHandler instance.BeforeLinkExecute, handler
public event EventHandler<BeforeLinkExecuteEventArgs> BeforeLinkExecute
public: __event EventHandler<BeforeLinkExecuteEventArgs*>* BeforeLinkExecute
public:
event EventHandler<BeforeLinkExecuteEventArgs^>^ BeforeLinkExecute
Event Data

The event handler receives an argument of type BeforeLinkExecuteEventArgs containing data related to this event. The following BeforeLinkExecuteEventArgs properties provide information specific to this event.

PropertyDescription
Gets or sets a value indicating whether the link should be executed or not.  
Gets the link annotation that will be executed.  
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