BreakStartTimeIsFixed Property | |
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; }
Public Property StartTimeIsFixed As Boolean
Get
Set
Property Value
Type:
BooleanExamples
Break br = new Break(LatLon.Empty);
br.WindowStart = DateTime.Parse("09:00:00").ToUniversalTime();
br.StartTimeIsFixed = true;
See Also