ChangeProcessor.OnExecute Event
Parent Object: ChangeProcessorDescription
Event that is fired when Inventor is in a state to accept changes to data. This is the event where the client application executes its logic on the specified document.
Syntax
ChangeProcessor.OnExecute( Document As Document, Context As NameValueMap, Succeeded As Boolean )Parameters
Name | Type | Description |
Document | Document | Input Document object that specifies the document in which the client is to make its changes. |
Context | NameValueMap | Input object that can be used to determine the context of why the event fired. |
Succeeded | Boolean | The Succeeded argument is an in/out argument, and will always have an initial value of True. Leave it set to true and the change will be committed. If your change fails and you want the change's transaction to be aborted, set this value to False. |