ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / UndoManager Class / Redo Method
Example

In This Topic
    Redo Method
    In This Topic
    Repeats the last action.
    Syntax
    'Declaration
     
    Public Sub Redo() 
    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.
    Example
    private void RedoButton_Click(object sender, EventArgs args)
    {
       _designer.UndoManager.Redo();
    }
    See Also