Repository.Variable.GetVariable: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '{{Template:APIClass|Repository Class|Repository}} {{Template:Repository.GetVariable.Cmt}} ==Syntax== *GetVariable(){{APIPrefix|As}}cVariable() == Usage Exam…')
 
No edit summary
Line 3: Line 3:


==Syntax==
==Syntax==
*GetVariable(){{APIPrefix|As}}[[cVariable Class|cVariable]]()
* GetVariable({{APIPrefix|As}} [[cVariable Class|cVariable]])
 
Parameters
 
Enter he Crew ID to get desired crew.


== Usage Example ==
== Usage Example ==
<div style="margin-right: 150px;">
  {{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 variable.}}
{{APIComment|'Get the list of variables in the connected repository.}}
   Dim GetVariable() As cVariable
  Dim ListOfVariables() As [[cVariable Class|cVariable]]
   GetVariable= MyRepository.GetVariable()
  ListOfVariables = MyRepository.GetAllVariables()
</div>
 
  {{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

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)