'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.
Property | Description |
---|---|
Cancel | Gets or sets a value indicating whether the link should be executed or not. |
Link | 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