Repository.Action.GetAllActions: Difference between revisions
Jump to navigation
Jump to search
Alex Ulanov (talk | contribs) m (moved Repository.GetAllActions to Repository.Action.GetAllActions) |
Alex Ulanov (talk | contribs) |
||
Line 16: | Line 16: | ||
{{APIComment|'Get the list of actions in the connected repository.}} | {{APIComment|'Get the list of actions in the connected repository.}} | ||
Dim ListOfActions() As [[cAction Class|cAction]] | Dim ListOfActions() As [[cAction Class|cAction]] | ||
ListOfActions = MyRepository.GetAllActions() | ListOfActions = MyRepository.Action.GetAllActions() | ||
</div> | </div> |
Revision as of 16:39, 22 May 2015
Returns an array containing all actions from the current project.
Syntax
- GetAllActions() As cAction()
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") 'Get the list of actions in the connected repository. Dim ListOfActions() As cAction ListOfActions = MyRepository.Action.GetAllActions()