Moving: function (sender, args);
sender. Event source.
args. Event information.
The Moving event occurs during window movement.
The event can occur if the EnableMove property is set to true.
To execute the example, the HTML page must contain the Window component named win (see Example of Creating the Window Component).
Add a handler for the Moving event.
win.Moving.add(function (sender, args) {
win.setCaption("Is Moving")
});
After executing the example on moving the window its title changes to Is Moving.
See also: