Window.Moving

Syntax

Moving: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The Moving event occurs during window movement.

Comments

The event can occur if the EnableMove property is set to true.

Example

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:

Window