Repository.Project.GetAllProjects
Jump to navigation
Jump to search
Member of: SynthesisAPI10Repository
Returns a NameIDPair object array that contains the names and ID numbers of all existing projects in the current repository.
Syntax
object.Project.GetAllProjects()
where object is a variable that represents a Repository object.
Example
VBA|VB.NET
Dim MyRepository As New Repository ...'Add code to connect to repository.
Dim ListofProjects As NameIDPair ListOfProjects = MyRepository.Project.GetAllProjects()