Carries out an action that changes the diagram in some way.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public abstract void Execute () |
Visual Basic
Copy Code
|
|---|
Public MustOverride Sub Execute () |
RemarksImplement your action's logic here. You must not execute commands by calling this method - instead pass them to diagram's ExecuteCommand. ExecuteCommand calls Execute and if UndoEnabled is set to true, adds the command to the undo manager's history.
See Also