Back to Devexpress

RichEditRibbonItemCollectionBuilder.AddRedoItem() Method

aspnetcore-devexpress-dot-aspnetcore-dot-richedit-dot-richeditribbonitemcollectionbuilder-7e628c7e.md

latest1.6 KB
Original Source

RichEditRibbonItemCollectionBuilder.AddRedoItem() Method

Adds the Redo item to the ribbon item collection.

Namespace : DevExpress.AspNetCore.RichEdit

Assembly : DevExpress.AspNetCore.RichEdit.v25.2.dll

NuGet Package : DevExpress.AspNetCore.RichEdit

Declaration

csharp
public RibbonButtonItemBuilder AddRedoItem()

Returns

TypeDescription
RibbonButtonItemBuilder

An object that can be used to further configure the added item.

|

Remarks

cshtml
@(Html.DevExpress().RichEdit("richEdit")
    .Ribbon(ribbon => ribbon
        .Tabs(tabs => {
            tabs.Clear();
            tabs.Add("History")
                .Items(items => {
                    items.AddUndoItem();
                    items.AddRedoItem();
                    //...

See Also

Server-Side Ribbon Customization

Online Demo - Ribbon Customization

RichEditRibbonItemCollectionBuilder Class

RichEditRibbonItemCollectionBuilder Members

DevExpress.AspNetCore.RichEdit Namespace