Skip to main content

RichEditRibbonContextTabCategoriesBuilder.AddShapeContextTabCategory() Method

Adds the Shape context tab category to the context tab category collection.

Namespace: DevExpress.AspNetCore.RichEdit

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

NuGet Package: DevExpress.AspNetCore.RichEdit

Declaration

public RichEditRibbonContextTabCategoryInfoBuilder AddShapeContextTabCategory()

Returns

Type Description
RichEditRibbonContextTabCategoryInfoBuilder

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

Remarks

@(Html.DevExpress().RichEdit("richEdit")
    .Ribbon(ribbon => ribbon
        .ContextTabCategories(categories => {
            categories.Clear();
            categories.AddShapeContextTabCategory();
        })
        //...
See Also