Skip to main content
JS

RichEditRibbonItemCollectionBuilder.AddAddParagraphToTableOfContentsItem() Method

Adds the Add Paragraph To Table Of Contents item to the ribbon item collection.

Namespace: DevExpress.AspNetCore.RichEdit

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

NuGet Package: DevExpress.AspNetCore.RichEdit

Declaration

public RibbonMenuItemBuilder AddAddParagraphToTableOfContentsItem()

Returns

Type Description
RibbonMenuItemBuilder

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

Remarks

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