

| Type | Description | |||
| Variant | A Variant expression that specifies the key / identifier of the link from current cursor location. |
The following sample displays a message box with the key of the link being clicked, once the user right-clicks the control:
Private Sub G2Host1_Context()
With G2Host1
If (.HostContext.HitTest And exHTValidLink) Then
MsgBox .HostContext.Link
End If
End With
End Sub