Click or drag to resize

BreakTimeIncludesExtraTravel Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
If true, extra time taken for travel to the location of the Break is taken out of the time for the Break, up to the minimum time available. This is only used for breaks which have a specific location.

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

Property Value

Type: Boolean
Examples
C#
Break br = new Break(33.59142,-117.73433);
// Average time at the Break is 30 minutes
br.AverageTime = new TimeSpan(0,30,0);
// Minimum time at the Break is 10 minutes
br.MinimumTime = new TimeSpan(0,10,0);
// Any extra travel time will be taken out of the Break, up to the MinimumTime
br.TimeIncludesExtraTravel = true;
See Also