Repository.Variable.GetVariable: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
Parameters
Parameters


Enter the Variable ID to get desired crew.
Enter the Variable ID to get desired Variable.


== Usage Example ==
== Usage Example ==

Revision as of 20:15, 21 April 2015


Version 10 Only- Returns variable with the provided ID. Returns nothing if the variable doesn't exist.

Syntax

Parameters

Enter the Variable ID to get desired Variable.

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 variables in the connected repository. 
 Dim ListOfVariables() As cVariable
 ListOfVariables = MyRepository.GetAllVariables()
 
 'Get a Variable. 
 Dim GetVariable() as cVariable
 GetVariable MyRepository.GetVariable(1)