Repository.Crew.GetAllCrews: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) m (moved GetAllCrews to Repository.GetAllCrews) |
John Leavitt (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template:APIClass|Repository Class|Repository}} | {{Template:APIClass|Repository Class|Repository}} | ||
Gets an array containing all crews | |||
== Method Syntax== | == Method Syntax== | ||
{{APIName|GetAllCrews()}} | {{APIName|'''GetAllCrews'''()}} | ||
{{APIPrefix|As}} | {{APIPrefix|As}} | ||
{{APIName|[[cCrew Class|cCrew]]()}}<br> | {{APIName|[[cCrew Class|cCrew]]()}}<br> |
Revision as of 23:44, 23 September 2013
Gets an array containing all crews
Method Syntax
GetAllCrews()
As
cCrew()
Returns an array containing all crews from the current project.
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 Projects in the connected repository.
Dim ListOfCrews() As cCrew ListOfCrews = MyRepository.GetAllCrews()