Back to Devexpress

HyperlinkClickEventArgs Class

aspnetcore-js-devexpress-dot-richedit-b74b1253.md

latest2.1 KB
Original Source

HyperlinkClickEventArgs Class

Contains data for the HyperlinkClick event.

Declaration

ts
export class HyperlinkClickEventArgs extends EventArgs

Remarks

The HyperlinkClick event occurs when a hyperlink is clicked. The event handler receives an argument of the HyperlinkClickEventArgs type. The argument’s properties provide information specific to this event.

Inheritance

EventArgs HyperlinkClickEventArgs

Properties

handled Property

Specifies whether the event is handled.

Declaration

ts
handled: boolean

Property Value

TypeDescription
boolean

true if the event is handled and no default processing is required; otherwise false.

|

htmlEvent Property

Gets a DHTML event object that relates to the processed event.

Declaration

ts
htmlEvent: MouseEvent

Property Value

TypeDescription
MouseEvent

An object that maintains DHTML event-specific information.

|

Remarks

Use the htmlEvent property to access an object that contains DHTML event information (such as the HTML element in which the event occurred, the state of the keyboard keys, the location of the mouse, the state of the mouse buttons, etc.).

Returns the clicked hyperlink.

Declaration

ts
hyperlink: Hyperlink

Property Value

TypeDescription
Hyperlink

A hyperlink object.

|

hyperlinkType Property

Identifies the clicked hyperlink type.

Declaration

ts
hyperlinkType: DocumentLinkType

Property Value

TypeDescription
DocumentLinkType

The hyperlink type.

|

targetUri Property

Gets the clicked link’s URI.

Declaration

ts
targetUri: string

Property Value

TypeDescription
string

The link’s URI.

|