Window.Expanded

Syntax

Expanded: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The Expanded event occurs after window expanding.

Comments

The window is expanded if it is fully shown in the page.

Window expanding occurs on clicking the button.

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 Expanded event:

win.Expanded.add(function(sender, args){

    win.setContent("Is Expanded")

    });

After executing the example on expanding the window new content is set for it: Is Expanded.

See also:

Window