Click or drag to resize

TurnBoxBackground Field

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The background color of the turnbox.

Namespace:  Telogis.GeoBase.Navigation
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public Color Background

Field Value

Type: Color
Remarks

Defaults to white. The TurnBox ignores this field and uses whatever ControlStyle it has set to determine the background color based on Background. For example:

C#
FlatRoundControlStyle myStyle = new FlatRoundControlStyle();
myStyle.Background = new SolidBrush(Color.Green);
turnBox.ControlStyle = myStyle;
// Box will now be opaque green

See also FlatRoundControlStyle.

See Also