UndoManager.Redo Method

Definition

Overloads

Redo()

Redo the actions of the topmost transaction on the redo stack.

Redo(Guid)

Redo the actions committed in the transaction whose id is passed in. Make sure the id passed in is the transaction that is on top of the stack. Otherwise throw an exception.

Redo()

Redo the actions of the topmost transaction on the redo stack.

public:
 bool Redo();
public bool Redo ();
member this.Redo : unit -> bool
Public Function Redo () As Boolean

Returns

Applies to

Redo(Guid)

Redo the actions committed in the transaction whose id is passed in. Make sure the id passed in is the transaction that is on top of the stack. Otherwise throw an exception.

public:
 bool Redo(Guid id);
public bool Redo (Guid id);
member this.Redo : Guid -> bool
Public Function Redo (id As Guid) As Boolean

Parameters

id
Guid

Returns

Applies to