Class UndoManager.UndoQueue
Undo queue implementation.
Inherited Members
Namespace: Jotunn.Managers
Assembly: Jotunn.dll
Syntax
public class UndoManager.UndoQueue
Methods
| Name | Description |
|---|---|
| Add(IUndoAction) | Add a new action to this queue. |
| GetHistory() | Get a string array of this queue's current history. |
| GetIndex() | Get this queue's current position index, -1 when empty. |
| Redo() | Execute the redo action of the item after the queue's current position and increase the position pointer. |
| Reset() | Reset the queue's history and position pointer to its initial state. |
| ToString() | Returns a string that represents the current object. |
| Undo() | Execute the undo action of the item at the queue's current position and decrease the position pointer. |