Repository.Variable.GetVariable

From ReliaWiki
Revision as of 23:50, 26 March 2015 by John Leavitt (talk | contribs) (Created page with '{{Template:APIClass|Repository Class|Repository}} {{Template:Repository.GetVariable.Cmt}} ==Syntax== *GetVariable(){{APIPrefix|As}}cVariable() == Usage Exam…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


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

Syntax

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 a variable. 
 Dim GetVariable() As cVariable
 GetVariable= MyRepository.GetVariable()