Click or drag to resize

BoundingBox Constructor

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Create a BoundingBox with no boundaries set.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public BoundingBox()
Remarks

If the parameter-less constructor is used the bottom-left and top-right corner points will need to be set manually and Normalize called to ensure that P1 is the bottom-left corner and that P2 is the top-right corner.

To adjust the points of a BoundingBox, consider using the Add(LatLon) and Add(BoundingBox) methods and the P1 and P2 properties.

Examples
C#
BoundingBox emptyBox = new BoundingBox();
// Creates a BoundingBox without boundaries
See Also