Represents a container for Window objects.
Namespace: MindFusion.Common.UI
File: WindowHost.js
JavaScript Copy Code |
---|
// class |
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"; |
MindFusion.Common.UI.Control
MindFusion.Common.UI.Container
MindFusion.Common.UI.WindowHost