Repository.Action.GetAction

From ReliaWiki
Revision as of 23:45, 26 March 2015 by John Leavitt (talk | contribs) (Created page with '{{Template:APIClass|Repository Class|Repository}} {{Template:Repository.GetAction.Cmt}} == Syntax== *GetAction() {{APIPrefix|As}} cAction() == Usage Example =…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


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

Syntax

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 Action. 
 Dim GetAction() As cAction
 GetAction= MyRepository.GetAction()