Repository.Action.GetAction

From ReliaWiki
Revision as of 21:03, 26 June 2015 by Alex Ulanov (talk | contribs)
Jump to navigation Jump to search


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")
 
 'Set a first available project as current. 
 MyRepository.Project.SetCurrentProject(0)
  
 'Get an Action with the ID of 1. 
 Dim GetAction() as cAction
 GetAction= MyRepository.Action.GetAction(1)