Click or drag to resize

BoundingBoxBorderWidth Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets or sets the width of the BoundingBox border.

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

Property Value

Type: Single
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));
// Set the border width
bb1.BorderWidth = 10;
// Get the border width
float result = bb1.BorderWidth;
Console.WriteLine("Border width is " + result);
// Prints 'Border width is 10'
See Also