Repository.Action.UpdateAction

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


Updates the action in the repository. Returns True if successful, otherwise returns False.

Syntax

  • UpdateAction(ByVal action As cAction ) As Boolean

Parameters

action: The cAction to update.

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 the list of actions in the current project. 
 Dim ListOfActions() As cAction
 ListOfActions= MyRepository.Action.GetAllActions()
 
 'Update the action and update the repository. 
 Dim SuccessUpdateAction As Boolean
 SuccessUpdateAction = MyRepository.Action.UpdateAction(ListOfActions(0))