[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Design.UndoManager.Redo

Redo Method

Redo()

Reapplies the most recently undone operation from the redo stack.

Declaration
public void Redo()
Remarks

This method reapplies the last action that was undone, effectively "redoing" the most recent change that was reversed. After the operation is redone, it is moved back to the undo stack, allowing it to be undone again if necessary. The Changed event is raised to notify subscribers that the state of the undo/redo history has changed.

Examples
private void RedoButton_Click(object sender, EventArgs args)
{
   _designer.UndoManager.Redo();
}