Repository.Task.GetScheduledTask
Jump to navigation
Jump to search
Version 10 Only - Returns scheduled task with the provided ID. Returns nothing if the task doesn't exist.
Syntax
- GetScheduledTask(AscScheduledTask)
Usage Example
'Declare a new repository connection object. Dim MyRepository As New Repository 'Connect to the Synthesis repository. Dim Success As Boolean = False Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") 'Set a first available project as current. MyRepository.Project.SetCurrentProject(0) 'Get Scheduled Task with the ID of 1. Dim GetScheduledTask() as cScheduledTask GetScheduledTask= MyRepository.Task.GetScheduledTask(1)