Repository.Task.UpdateScheduledTask: Difference between revisions
Jump to navigation
Jump to search
Alex Ulanov (talk | contribs) (Created page with '{{Template:APIClass|Repository Class|Repository}} Updates the specified task in the repository. {{Template:BooleanReturn.Cmt}} == Syntax == *UpdateScheduledTask( task {{APIPref…') |
Alex Ulanov (talk | contribs) (→Syntax) |
||
Line 3: | Line 3: | ||
== Syntax == | == Syntax == | ||
*UpdateScheduledTask( task {{APIPrefix|As}} [[cScheduledTask Class|cScheduledTask]] ){{APIPrefix|As Boolean | *UpdateScheduledTask( task {{APIPrefix|As}} [[cScheduledTask Class|cScheduledTask]] ){{APIPrefix|As Boolean}} | ||
Parameters | Parameters |
Revision as of 21:02, 22 May 2015
Updates the specified task in the repository. Returns True if successful, otherwise returns False.
Syntax
- UpdateScheduledTask( task As cScheduledTask )As Boolean
Parameters
- task: The cScheduledTask to update.
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 the list of scheduled tasks from the current project. Dim ListOfTasks() As cScheduledTask ListOfTasks = MyRepository.Task.GetAllScheduledTasks() 'After updating the task, update the repository Dim Success As Boolean Success = MyRepository.Task.UpdateScheduledTask(ListOfTasks(0))