cCorrectiveTask.GetPools Method
Jump to navigation
Jump to search
Member of: SynthesisAPI.cCorrectiveTask
Returns an array of the Pool IDs and number of parts for all pools required for the task.
Remarks: Alternatively, .NET users can use the Pools()
property in the class to get or set the Pools IDs and number of parts.
Syntax
.GetPools(ByRef arr())
Parameters
arr()
- Required as PoolInfo. An array of the Pool IDs and the number of parts for all pools required for the task.
Example
VBA ... 'Add code to get an existing corrective task. Dim aTask As cCorrectiveTask ... 'Get the IDs of the crews assigned to the task. Dim myarray() As PoolInfo Call aTask.GetPools(myarray) 'Sample output. Dim i As Integer Dim upper As Integer Dim lower As Integer lower = LBound(myarray) upper = UBound(myarray) For i = lower To upper MsgBox "Pool ID = " & myarray(i).ID &". Number of Parts = " & myarray(i).NumParts Next i