# GrapeCity.ActiveReports.Design.UndoManager.Redo

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_ActiveReports_Design_UndoManager_Redo_" data-uid="GrapeCity.ActiveReports.Design.UndoManager.Redo*">Redo Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_ActiveReports_Design_UndoManager_Redo_" data-uid="GrapeCity.ActiveReports.Design.UndoManager.Redo*"></a>
<h4 id="GrapeCity_ActiveReports_Design_UndoManager_Redo" data-uid="GrapeCity.ActiveReports.Design.UndoManager.Redo">Redo()</h4>
<div class="markdown level1 summary"><p>Reapplies the most recently undone operation from the redo stack.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public void Redo()</code></pre>
</div>
<h5 id="GrapeCity_ActiveReports_Design_UndoManager_Redo_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This method reapplies the last action that was undone, effectively &quot;redoing&quot; 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 <a class="xref" href="GrapeCity.ActiveReports.Design.UndoManager.Changed.html">Changed</a> event is raised to notify subscribers that the state of the undo/redo history has changed.</p>
</div>
<h5 id="GrapeCity_ActiveReports_Design_UndoManager_Redo_examples">Examples</h5>
<pre><code class="lang-csharp">private void RedoButton_Click(object sender, EventArgs args)
{
   _designer.UndoManager.Redo();
}</code></pre>

</div>
