RouteStopRenderBrush Property | |
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; }
Public Property RenderBrush As Brush
Get
Set
Property Value
Type:
BrushRemarks 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
...
RouteStop rs = new RouteStop(myLatLon);
...
rs.RenderBrush = Brushes.MediumAquamarine;
...
See Also