Repository.Variable.GetVariable
Jump to navigation
Jump to search
Version 10 Only- Returns variable with the provided ID. Returns nothing if the variable doesn't exist.
Syntax
- GetVariable(As cVariable)
Parameters
Enter he Crew ID to get desired crew.
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)