(
a feature of FlowChartX Pro edition)
Occurs when an action is undone.
SyntaxVB6
Copy Code
|
|---|
Public Event ActionUndone |
Event DataParameter | Type | Description |
|---|---|---|
actionType | [input] EActionType enumeration | Specifies what kind of action is undone. |
obj | [input] reference to an item | A diagram item affected by the action. |
ID | [input] long | An identifier associated with custom undo records. |
Dispatch ID: 84
RemarksRaised when an action is undone, either programmatically or by a user. The type of the undone action is specified via the actionType argument. The following action types are currently supported by this event:
actCustom | A custom action is undone. |
actCreate | An item creation is undone. |
actDelete | An item deletion is undone. |
For actCreate and actDelete actions, the obj argument refers to the item affected by the respective action. For actCustom actions, the ID argument identifies a custom undo record created via RecordCustomAction.
See Also