Search
Window.dragStart Event
See Also
 






Raised when a drag operation is started.

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

 Syntax

JavaScript  Copy Code

EventDispatcher dragStart

 Event Data

The event handler method receives the following arguments:
sender
A Window instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
An InteractionEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.

 Example

The following code handles the dragStart event of a Window instance and unpins the Window if it was dragged:

JavaScript  Copy Code

window.dragStart.addEventListener(windowEventHandler);


function windowEventHandler(sender, args)
{
 if(args.action == ui.InteractionType.Drag && sender.pinned)
 {
       sender.unpin();
  } 
}

 See Also