'Declaration Public Event HyperlinkClicked As EventHandler(Of HyperlinkClickedEventArgs)
public event EventHandler<HyperlinkClickedEventArgs> HyperlinkClicked
Event Data
The event handler receives an argument of type HyperlinkClickedEventArgs containing data related to this event. The following HyperlinkClickedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Hyperlink | Gets the hyperlink associated with the event. |
See Also