Repository.Variable.GetVariable: 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 the Variable ID to get desired | 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
- GetVariable(As cVariable)
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)