Represents the method that will handle the HyperLink click event.
Syntax
'Declaration
Public Delegate Sub HyperLinkEventHandler( _
ByVal As Object, _
ByVal As HyperLinkEventArgs _
)
public delegate void HyperLinkEventHandler(
object ,
HyperLinkEventArgs
)
Parameters
- sender
The source of the event.
- e
A HyperLinkEventArgs that contains the event data.
See Also