'Declaration Public Event HyperLink As HyperLinkEventHandler
public event HyperLinkEventHandler HyperLink
Event Data
The event handler receives an argument of type HyperLinkEventArgs containing data related to this event. The following HyperLinkEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Handled | Sets or returns a value indicating whether the HyperLinkEvent is handled. If the value for this property is set to true, the hyperlink is not opened. The default value is false. |
HyperLink | Gets or sets the target URL of the hyperlink that was clicked. |
See Also