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 object. Dim MyRepository As New Repository 'Connect to the Synthesis repository. Dim Success As Boolean = False Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") 'Set a first available project as current. MyRepository.Project.SetCurrentProject(0) 'Get the list of variables in the connected repository. Dim ListOfVariables() As cVariable ListOfVariables = MyRepository.Variable.GetAllVariables()