Search
WindowHost Class
See Also
 






Represents a container for Window objects.

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

 Syntax

JavaScript  Copy Code

// class
WindowHost.prototype = {}

 Example

The following code creates a new WindowHost object using a <DIV> element called "host" and defined in the web page:

JavaScript  Copy Code
// Create a new WindowHost control.
var host = new ui.WindowHost(document.getElementById("host"));
host.width = new ui.Unit(100, ui.UnitType.Percent);
host.height = new ui.Unit(100, ui.UnitType.Percent);
host.theme = "gray";

 Inheritance Hierarchy

MindFusion.Common.UI.Control
    MindFusion.Common.UI.Container
        MindFusion.Common.UI.WindowHost

 See Also