Raised when the Tooltip is showing.
Namespace: MindFusion.Common.UI
File: Tooltip.js
JavaScript Copy Code |
---|
EventDispatcher tooltipShowing |
The event handler method receives the following arguments:
sender
A Tooltip instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
A ControlModifyingEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
The following code creates a new instance of the Tooltip class associated with the HTMLElement of a Window and handles its tooltipShow event:
JavaScript Copy Code |
---|
var tooltip = new ui.Tooltip(window.element); tooltip.tooltipShow.addEventListener(tooltipShowEventHandler);
|