Raised when a resize operation is finished.
Namespace: MindFusion.Common.UI
File: Window.js
SyntaxJavaScript
Copy Code
|
|---|
EventDispatcher resizeEnd |
Event DataThe 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.
ExampleThe following code handles the resizeEnd event of a Window instance and disables pin:
JavaScript
Copy Code
|
|---|
window.resizeEnd.addEventListener(windowEventHandler);
|
See Also