cURD.SetScheduledTaskIDs Method

From ReliaWiki
Jump to navigation Jump to search
APIWiki.png


Member of: SynthesisAPI.cURD


Assigns scheduled tasks to the URD.


Remarks: Alternatively, .NET users can use the ScheduledTaskIDs() property in the class to get or set the task IDs.

Syntax

.SetScheduledTaskIDs(arr())

Parameters

arr()

Required. Long. An array of the numeric IDs of the scheduled tasks to be assigned to the URD.


Example

This example assumes that the repository contains existing tasks.

VBA

 ... 

 'Add code to create a new URD or get an existing URD. 
 Dim aURD As cURD
 ... 

 'Create an array and define the tasks to be assigned. For this example, 
 'assume that task ID#2 and ID#4 are to be assigned to the URD. 
 Dim myarray(1) As Long
 myarray(0) = 2
 myarray(1) = 4
 
 'Assign the tasks to the URD. 
 Call aURD.SetScheduledTaskIDs(myarray)