Repository.Variable.GetVariable

From ReliaWiki
Jump to navigation Jump to search


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")
 
 'Set a first available project as current. 
 MyRepository.Project.SetCurrentProject(0)
  
 'Get a Variable. 
 Dim GetVariable() as cVariable
 GetVariable MyRepository.Variable.GetVariable(1)