Repository.Variable.GetAllVariables
Jump to navigation
Jump to search
Returns an array containing all variables in the current project.
Syntax
- GetAllVariables()AscVariable()
Usage Example
Declare a new repository connection class.
Private WithEvents 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()