BoundingBoxBorderWidth Property |
Namespace: Telogis.GeoBase
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'