Click or drag to resize

BoundingBoxIsValid Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Returns true only if this BoundingBox's corner points have been assigned valid values.

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

Property Value

Type: Boolean
Examples
C#
BoundingBox bb1 = new BoundingBox();
// Add arbitrary points in Los Angeles, USA.
bb1.Add(new LatLon(33.94, -118.34));
bb1.Add(new LatLon(33.78, -117.95));
Console.WriteLine("Is this a valid BoundingBox? " + bb1.IsValid);
// Prints 'Is this a valid BoundingBox? True'
See Also