Raised when an action is undone.
Namespace: MindFusion.Diagramming
File: DiagramBase.js
SyntaxJavaScript
Copy Code
|
|---|
| diagram.actionUndone.addEventListener(onActionUndone); function onActionUndone(sender, args) { } |
Event DataEvent handlers receive an UndoEventArgs instance containing data about this event.
RemarksThis event is raised during calls to undo. It is raised both for top-level commands and for the constituent actions of composite commands.
See Also