(
a feature of FlowChartX Pro edition)
Occurs when an action is redone.
SyntaxVB6
Copy Code
|
|---|
Public Event ActionRedone |
Event DataParameter | Type | Description |
|---|---|---|
actionType | [input] EActionType enumeration | Specifies what kind of action is redone. |
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: 85
RemarksRaised when an action is redone, either programmatically or by a user. The type of the redone action is specified via the actionType argument. The following action types are currently supported by this event:
actCustom | A custom action is redone. |
actCreate | Item creation is redone. |
actDelete | Item deletion is redone. |
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