Initializes a new instance of the ControlModifyingEventArgs class.
Namespace: MindFusion.Common.UI
File: EventArgs.js
JavaScript Copy Code |
---|
function ControlModifyingEventArgs (control, changes) |
Control. The control that is being modified
Object. An object containing the changed properties.
The following code handles the tooltipHiding event of a ToolTip:
JavaScript Copy Code |
---|
var tooltip = new ui.Tooltip(window.element); tooltip.tooltipHiding.addEventListener(tooltipHidingEventHandler);
|