Repository.Action.GetAction: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
Line 19: Line 19:
  {{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()
    
    
  {{APIComment|'Get an Action.}}
  {{APIComment|'Get an Action.}}
   Dim GetAction() as cAction
   Dim GetAction() as cAction
   GetAction= MyRepository.GetAction(1)
   GetAction= MyRepository.Action.GetAction(1)

Revision as of 16:40, 22 May 2015


Version 10 Only - Returns action with the provided ID. Returns nothing if the action doesn't exist.

Syntax

Parameters

Enter the Action ID to get desired action.

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()
 
 'Get an Action. 
 Dim GetAction() as cAction
 GetAction= MyRepository.Action.GetAction(1)