[]
        
(Showing Draft Content)

FarPoint.Win.Chart.UndoRedoManager.Redo

Redo Method

Redo()

Redoes the last action undone with Undo and adds it to the undo list.

Declaration
public bool Redo()
Public Function Redo() As Boolean
Returns
Type Description
bool

Boolean: true if successful; false otherwise

Redo(int)

Redoes the specified number of actions and adds them to the undo list.

Declaration
protected bool Redo(int count)
Protected Function Redo(count As Integer) As Boolean
Parameters
Type Name Description
int count

Number of actions to redo, or -1 to redo all pending actions

Returns
Type Description
bool

Boolean: true if successful; false otherwise

Redo(UndoAction)

Redoes all actions in the redo stack up to and including the specified action and adds it to the undo list.

Declaration
protected bool Redo(UndoAction action)
Protected Function Redo(action As UndoAction) As Boolean
Parameters
Type Name Description
UndoAction action

The action.

Returns
Type Description
bool

True if successful