HyperlinkClickEventArgs Class
In This Article
Provides data for the hyperlinkClick event.
#Declaration
TypeScript
class HyperlinkClickEventArgs extends EventArgs
#Properties
#handled Property
Specifies whether the event is handled, and the default processing is not required.
#Declaration
TypeScript
handled: boolean
#Property Value
Type | Description |
---|---|
boolean | true, if the event is completely handled by custom code and no default processing is required; otherwise, false. |
#htmlEvent Property
Gets a DHTML event object that relates to the processed event.
#Declaration
TypeScript
htmlEvent: MouseEvent
#Property Value
Type | Description |
---|---|
Mouse |
An object that maintains DHTML event-specific information. |
#Remarks
Use the htmlEvent property to access an object that contains DHTML event’s 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.).
#hyperlinkType Property
Identifies the clicked hyperlink type.
#Declaration
TypeScript
hyperlinkType: DocumentLinkType
#Property Value
Type | Description |
---|---|
Document |
The link type. |
#targetUri Property
Gets the clicked link’s URI.
#Declaration
TypeScript
targetUri: string
#Property Value
Type | Description |
---|---|
string | The link’s URI. |