[]
Redoes the last action undone with Undo and adds it to the undo list.
public bool Redo()
Public Function Redo() As Boolean
Type | Description |
---|---|
bool | Boolean: true if successful; false otherwise |
Redoes the specified number of actions and adds them to the undo list.
protected bool Redo(int count)
Protected Function Redo(count As Integer) As Boolean
Type | Name | Description |
---|---|---|
int | count | Number of actions to redo, or -1 to redo all pending actions |
Type | Description |
---|---|
bool | Boolean: true if successful; false otherwise |
Redoes all actions in the redo stack up to and including the specified action and adds it to the undo list.
protected bool Redo(UndoAction action)
Protected Function Redo(action As UndoAction) As Boolean
Type | Name | Description |
---|---|---|
UndoAction | action | The action. |
Type | Description |
---|---|
bool | True if successful |