Search
ControlModifiedEventArgs Class
See Also
 






Specifies data for notification events, related to control changes.

Namespace: MindFusion.Common.UI
File: EventArgs.js

 Syntax

JavaScript  Copy Code

// class
ControlModifiedEventArgs.prototype = {}

 Example

The following code handles the windowOpen event of the Window class.

JavaScript  Copy Code

var u = MindFusion.Common.UI;

window.windowOpen.addEventListener(windowOpenEventHandler);

function windowOpenEventHandler(sender, args)
{
  //if the window is minimized
  if(args.changes.windowState === u.WindowState.Maximized)
      //do something
}

 Inheritance Hierarchy

MindFusion.Common.UI.EventArgs
    MindFusion.Common.UI.ControlModifiedEventArgs

 See Also