Repository.Pool.GetPool: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) No edit summary |
John Leavitt (talk | contribs) No edit summary |
||
Line 7: | Line 7: | ||
Parameters | Parameters | ||
Enter | Enter the Pool ID to get desired pool. | ||
== Usage Example == | == Usage Example == |
Revision as of 20:15, 21 April 2015
Version 10 Only - Returns pool with the provided ID. Returns nothing if the pool doesn't exist.
Syntax
- GetPool(As cPool)
Parameters
Enter the Pool ID to get desired pool.
Usage Example
'Declare a new repository connection object. Dim MyRepository As New Repository 'Connect to the Synthesis repository. Dim Success As Boolean = False Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") 'Get the list of pools in the connected repository. Dim ListOfPools() As cPool ListOfPools = MyRepository.GetAllPools() 'Get a Pool. Dim GetPool() as cPool GetPool= MyRepository.GetPool(1)