Repository.Variable.GetVariable: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
Line 19: Line 19:
  {{APIComment|'Get the list of variables in the connected repository.}}
  {{APIComment|'Get the list of variables in the connected repository.}}
   Dim ListOfVariables() As [[cVariable Class|cVariable]]
   Dim ListOfVariables() As [[cVariable Class|cVariable]]
   ListOfVariables = MyRepository.GetAllVariables()
   ListOfVariables = MyRepository.Variable.GetAllVariables()
    
    
  {{APIComment|'Get a Variable.}}
  {{APIComment|'Get a Variable.}}
   Dim GetVariable() as cVariable
   Dim GetVariable() as cVariable
   GetVariable MyRepository.GetVariable(1)
   GetVariable MyRepository.Variable.GetVariable(1)

Revision as of 16:32, 22 May 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.Variable.GetAllVariables()
 
 'Get a Variable. 
 Dim GetVariable() as cVariable
 GetVariable MyRepository.Variable.GetVariable(1)