CCorrectiveTask.GetPools Method

From ReliaWiki
Revision as of 23:50, 9 August 2018 by David J. Groebel (talk | contribs) (Created page with '{{DISPLAYTITLE:cCorrectiveTask.GetCrewIDs Method}}{{Template:API}}{{Template:APIBreadcrumb|.cCorrectiveTask}} <onlyinclude>Returns an array of the Poo…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
APIWiki.png


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(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 Long
 Call aTask.GetCrewIDs(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 (myarray(i))
 Next i