linkClick

Event for clicks on hyperlinks.
[event] linkClick([in] BSTR linkType, [in] BSTR dest, [in] int page)
This event is called when the user clicks on a hyperlink. The event will be called even if hyperlinks are disabled (see enableHyperlinks).

This event can be used to do processing on hyperlinks, for example, to disallow following of certain types of links.

The event receives three arguments:

The link types are as follows:
VB:
Private Sub viewer_linkClick(linkType As String, dest As String, page As Long) _ Handles viewer.linkClick If linkType = "goto" Then ... Else ... End If End Sub
enableHyperlinks