The event handler receives an argument of type C1SuperLabelLinkClickedEventArgs containing data related to this event. The following C1SuperLabelLinkClickedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Button | Gets the button that was clicked on the link. |
HRef | Gets the value of the link's HREF attribute. |
Target | Gets the value of the link's TARGET attribute. |
Hyperlinks are created using "A" tags in the HTML source text. When hyperlinks are clicked, the LinkClicked event fires and provides information about the link. The event handler can then take appropriate action.
The example below creates some hyperlinks using "A" tags. When the user clicks the link, the event handler shows a message box.