Raised when the ToolTip is hidden.
Namespace: MindFusion.Common.UI
File: Tooltip.js
SyntaxJavaScript
Copy Code
|
|---|
| tooltip.tooltipHide.addEventListener(onTooltipHide); function onTooltipHide(sender, args) { } |
Event DataThe 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 ControlModifiedEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
ExampleThe following code creates a new instance of the Tooltip class associated with the HTMLElement of a Window instance and handles its tooltipHide event:
JavaScript
Copy Code
|
|---|
var tooltip = new ui.Tooltip(window.element); tooltip.tooltipHideaddEventListener(tooltipHideEventHandler);
|
See Also