Raised when an action is redone.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public event EventHandler<UndoEventArgs> ActionRedone |
Visual Basic
Copy Code
|
|---|
Public Event ActionRedone As EventHandler(Of UndoEventArgs) |
Event DataActionRedone event handlers receive an argument of type UndoEventArgs. The following UndoEventArgs members provide information relevant to the event:
Member name | Description |
|---|---|
Refers to the Command that has been redone. |
RemarksThis event is raised during calls to Redo. It is raised both for top-level commands and for the constituent actions of composite commands.
See Also