Click or drag to resize

BoundingBoxInnerColor Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets or sets the inner color of the BoundingBox. Default is transparent.

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

Property Value

Type: Color
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 inner color
bb1.InnerColor = Color.Purple;
// Get the inner color
Color result = bb1.InnerColor;
Console.WriteLine("BoundingBox inner color is " + result);
// Prints 'BoundingBox inner color is Color [Purple]'
See Also