Skip to main content

ASPxClientRichEdit.HyperlinkClick Event

Occurs when a hyperlink is activated within the document.

#Declaration

TypeScript
HyperlinkClick: ASPxClientEvent<ASPxClientRichEditHyperlinkClickEventHandler>

#Event Data

The HyperlinkClick event's data class is ASPxClientRichEditHyperlinkClickEventArgs. The following properties provide information specific to this event:

Property Description
handled Gets or sets whether the event is handled manually, so no default processing is required.
htmlEvent Gets a DHTML event object that relates to the processed event.
hyperlinkType Gets a value identifying the clicked hyperlink type.
targetUri Gets the clicked link’s URI.

#Remarks

A hyperlink is activated when an end-user clicks it while holding the CTRL key down.

Refer to the following section for more information about client-side events: Client API.

See Also