Repository.Project.GetAllProjects

From ReliaWiki
Revision as of 17:52, 13 July 2015 by Kate Racaza (talk | contribs)
Jump to navigation Jump to search

Member of: SynthesisAPI10Repository

APIWiki.png


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()