Gets a reference to the undo manager's CommandHistory instance.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public CommandHistory History { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property History As CommandHistory |
An instance of the CommandHistory class.
RemarksHistory represents the undo manager's queue of action records. This queue provides access to the NextUndo and NextRedo records. You could set the queue's Capacity, specifying how many records can be added to the queue before the oldest ones start to drop off its end.
See Also