Deletes the Action. | |
Syntax: | object.Delete ActionID |
Parameters: |
ActionID As
String - Name of the action to
be deleted from the list.
|
Description: | CimActionList.Delete deletes a CimAction from the project. Examples Dim project As CimProject Set project = CreateObject("CimProject") project.OpenLocalProject
"c:\cimpdemo\cimpdemo.gef" Dim actionList as CimActionList set actionList = project.actions actionList.Delete "EXISTING_ACTION_ID" |