[]
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 | True if successful |
Redoes the specified number of actions and adds them to the undo list.
public bool Redo(int count)
Public 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 | True if successful |
Redoes all actions in the redo stack up to and including the specified action and adds it to the undo list.
public bool Redo(UndoAction action)
Public Function Redo(action As UndoAction) As Boolean
Type | Name | Description |
---|---|---|
UndoAction | action |
Type | Description |
---|---|
bool | True if successful |