CCorrectiveTask.SetCrewIDs Method: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) (Created page with '{{DISPLAYTITLE:cCorrectiveTask.SetCrewIDs Method}}{{Template:API}}{{Template:APIBreadcrumb|10|.cCorrectiveTask}} <onlyinclude>Assigns crews to the tas…') |
Kate Racaza (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:cCorrectiveTask.SetCrewIDs Method}}{{Template:API}}{{Template:APIBreadcrumb | {{DISPLAYTITLE:cCorrectiveTask.SetCrewIDs Method}}{{Template:API}}{{Template:APIBreadcrumb|.[[CCorrectiveTask_Class|cCorrectiveTask]]}} | ||
Revision as of 21:14, 13 November 2015
Member of: SynthesisAPI.cCorrectiveTask
Assigns crews to the task. (Alternatively, VBA.NET users can use the CrewIDs() property to get or set the crew IDs.)
Syntax
.SetCrewIDs(arr())
Parameters
arr()
- Required. Long. An array of the numeric IDs of the crews to be assigned to the task.
Example
This example assumes that the repository contains existing crews.
VBA ... 'Add code to create a new task or get an existing task. Dim aTask As cCorrectiveTask ... 'Create an array and define the crews to be assigned. For this example, 'assume that crew ID#2 and ID#4 are to be assigned to the task. Dim myarray(1) As Long myarray(0) = 2 myarray(1) = 4 'Assign the crews to the task. Call aTask.SetCrewIDs(myarray)