Repository.Action.UpdateAction: Difference between revisions
Jump to navigation
Jump to search
Alex Ulanov (talk | contribs) |
Alex Ulanov (talk | contribs) No edit summary |
||
Line 3: | Line 3: | ||
==Syntax== | ==Syntax== | ||
*UpdateAction( action {{APIPrefix|As}} [[cAction Class|cAction]] ) {{APIPrefix|As Boolean}} | *UpdateAction(ByVal action {{APIPrefix|As}} [[cAction Class|cAction]] ) {{APIPrefix|As Boolean}} | ||
Parameters | Parameters |
Revision as of 21:03, 26 June 2015
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))