Click or drag to resize

BoundingBoxHeight Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets the height of the BoundingBox in degrees.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public double Height { get; }

Property Value

Type: Double
Examples
C#
BoundingBox bb1 = new BoundingBox();
// Add arbitrary points in Los Angeles, USA.
bb1.Add(new LatLon(33.787935, -118.013866));
bb1.Add(new LatLon(33.761919, -117.985009));
Console.WriteLine("BoundingBox height is {0} degrees", bb1.Height);
// Prints 'BoundingBox height is 0.026016087890639 degrees'
See Also