cScheduledTask.GetPools Method

From ReliaWiki
Revision as of 18:37, 10 August 2018 by David J. Groebel (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
APIWiki.png


Member of: SynthesisAPI.cScheduledTask


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 scheduled task. 
 Dim aTask As cScheduledTask
 ... 

 '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