adTempus API
ArcanaDevelopment.adTempus.Client Namespace / TimeCriterion Class / StartWithin Property


In This Topic
    StartWithin Property
    In This Topic
    Specifies a window of time within the job should start.
    Syntax
    'Declaration
     
    
    Public Property StartWithin As TimeSpan
    public TimeSpan StartWithin {get; set;}
    public:
    property TimeSpan StartWithin {
       TimeSpan get();
       void set (    TimeSpan value);
    }
    Remarks
    If StartWithin is System.TimeSpan.Zero (the default) adTempus starts the job as close to the exact scheduled start time as possible. If StartWithin is set to a positive value, it indicates that the job should start within StartsWithin seconds of the scheduled execution time. adTempus will randomly select a start time within that window. If AllowEarlyStart is True, the job may start up to StartWithin seconds before the specified start time.
    See Also