Interface: IHyperlinkManagerEventApi
Remarks
Partial IHyperlinkManager interface that defines the event handler API methods
Methods
offactivate()
offactivate(
activateCallback,refObject?):void
Removes a listener to the 'activate' event that was added by a call to onactivate or onactivateonce.
Parameters
• activateCallback: ViewHyperlinksListener_activate
Event listener to unregister
• refObject?: any
Returns
void
onactivate()
onactivate(
activateCallback,refObject?, ...args?):ViewHyperlinksListener_activate
Adds a listener to the 'activate' event. The listener will be notified of activate events until offactivate is called.
Parameters
• activateCallback: ViewHyperlinksListener_activate
Event listener to register
• refObject?: any
• ...args?: any[]
Returns
ViewHyperlinksListener_activate
onactivateonce()
onactivateonce(
activateCallback,refObject?, ...args?):ViewHyperlinksListener_activate
Adds a listener to the 'activate' event. The listener will be notified of the first activate event, then will not be called again.
Parameters
• activateCallback: ViewHyperlinksListener_activate
Event listener to register
• refObject?: any
• ...args?: any[]
Returns
ViewHyperlinksListener_activate