Click or drag to resize

RouteStopRenderBrush Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
A Brush used to color this stop.

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

Property Value

Type: Brush
Remarks
The default color for the RenderBrush is yellow for regular RouteStops and grey for Breaks. If a RouteStop is part of a Route, a fixed start will be colored green, a fixed end will be colored red, otherwise it will use the default yellow or grey.
Examples
To override the default color of a RouteStop, change RenderBrush
C#
...
// Create our new RouteStop
RouteStop rs = new RouteStop(myLatLon);
...
rs.RenderBrush = Brushes.MediumAquamarine;
// rs will now be rendered a blueish color
...
See Also