ASP.NET Pack Programmer's Guide
Control.bounds Property
See Also
 





Gets the bounds of this Control.

Namespace: MindFusion.Mapping
Package: Control.js

 Syntax

JavaScript  Copy Code

Object.defineProperty(Control.prototype, "bounds", { value: Rect });

 Property Value

Rect. The bounds.

 Example

The following example creates a new MapView using a <DIV> element called "mapview" that we've declared in the HTML code of the page. Then it checks if its width is greater than 100 pixels. The MapView derives from Control.

JavaScript  Copy Code

var m = MindFusion.Mapping;

// create a new instance of the mapView
var view = new m.MapView(document.getElementById("mapView"));
view.theme = "light";
if(view.bounds.width > 100)
{
    //do something
}

 See Also

Control Members
Control Class
MindFusion.Mapping Namespace