gotoLinkAt2

Activate the link at the specified coordinates.
gotoLinkAt2([in] int page, [in] double x, [in] double y)
This function activates (follows) the link (if any) at the specified page number and coordinates.

The coordinates are in the PDF coordinate space. Mouse coordinates must be converted before being passed to this function (see convertWindowToPDFCoords2).

VB:
Private Sub viewer_MouseUp2(button As Integer, shift As Integer, _ page As Long, x As Double, y As Double) _ Handles viewer.MouseUp2 If viewer.onLink2(page, x, y) Then viewer.gotoLinkAt2(page, x, y) End If End Sub
convertWindowToPDFCoords2
onLink2