Repository.Variable.GetVariable: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) (Created page with '{{Template:APIClass|Repository Class|Repository}} {{Template:Repository.GetVariable.Cmt}} ==Syntax== *GetVariable(){{APIPrefix|As}}cVariable() == Usage Exam…') |
John Leavitt (talk | contribs) No edit summary |
||
Line 3: | Line 3: | ||
==Syntax== | ==Syntax== | ||
*GetVariable( | * GetVariable({{APIPrefix|As}} [[cVariable Class|cVariable]]) | ||
Parameters | |||
Enter he Crew ID to get desired crew. | |||
== Usage Example == | == Usage Example == | ||
{{APIComment|'Declare a new repository connection object.}} | {{APIComment|'Declare a new repository connection object.}} | ||
Dim MyRepository As New Repository | Dim MyRepository As New Repository | ||
Line 14: | Line 17: | ||
Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") | Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") | ||
{{APIComment|'Get a | {{APIComment|'Get the list of variables in the connected repository.}} | ||
Dim GetVariable() | Dim ListOfVariables() As [[cVariable Class|cVariable]] | ||
GetVariable | ListOfVariables = MyRepository.GetAllVariables() | ||
{{APIComment|'Get a Variable.}} | |||
Dim GetVariable() as cVariable | |||
GetVariable MyRepository.GetVariable(1) |
Revision as of 20:14, 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 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)