aspnet-devexpress-dot-web-dot-aspxhtmleditor-92aa4927.md
A default toolbar button that allows a previously canceled action performed within the design view area to be returned.
Namespace : DevExpress.Web.ASPxHtmlEditor
Assembly : DevExpress.Web.ASPxHtmlEditor.v25.2.dll
NuGet Package : DevExpress.Web
public class ToolbarRedoButton :
HtmlEditorToolbarItem
Public Class ToolbarRedoButton
Inherits HtmlEditorToolbarItem
The ASPxHtmlEditor keeps track of all user actions, and allows you to undo or repeat them by using the Undo and Redo buttons (ToolbarUndoButton and ToolbarRedoButton ).
You can add the Redo button to toolbars by using either the ASPxHtmlEditor designer at design time, or programmatically.
protected void Page_Load(object sender, EventArgs e) {
HtmlEditorToolbar stToolbar1 = HtmlEditorToolbar.CreateStandardToolbar1();
ToolbarRedoButton redo = new ToolbarRedoButton();
stToolbar1.Items.Add(redo);
ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server">
<Toolbars>
<dx:HtmlEditorToolbar Name="StandardToolbar1">
<Items>
<dx:ToolbarRedoButton>
</dx:ToolbarRedoButton>
</Items>
</dx:HtmlEditorToolbar>
</Toolbars>
</dx:ASPxHtmlEditor>
Object StateManager CollectionItem ToolbarItemBase HtmlEditorToolbarItem ToolbarRedoButton
See Also