Click or drag to resize

BreakStartTimeIsFixed Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
For Breaks with no specific location, this property makes the time window begin and end at the WindowStart time. The Break will begin at the WindowStart time unless the penalties set for the optimization make it too costly to do so. The WindowStart property must be set to use the StartTimeIsFixed property. This property has no effect if the Break has a location.

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

Property Value

Type: Boolean
Examples
C#
// A break with no location
Break br = new Break(LatLon.Empty);
// Window start time of 9am
br.WindowStart = DateTime.Parse("09:00:00").ToUniversalTime();
br.StartTimeIsFixed = true;
// Break will begin at 9am if not too costly.
See Also