adTempus API
ArcanaDevelopment.adTempus.Client Namespace / JobExecutionSettings Class / StartingStep Property


In This Topic
    StartingStep Property
    In This Topic
    The step to begin execution with, or a null reference (Nothing in Visual Basic) to start from the beginning
    Syntax
    'Declaration
     
    
    <CanBeNullAttribute()>
    Public Property StartingStep As JobStep
    [CanBeNull()]
    public JobStep StartingStep {get; set;}
    [CanBeNull()]
    public:
    property JobStep^ StartingStep {
       JobStep^ get();
       void set (    JobStep^ value);
    }
    Remarks
    If StepsToExecute is specified, execution begins at that step and runs to the end following normal step execution rules. Use StepsToExecute to selectively execute a single step or multiple steps.
    See Also