Skip to main content
A newer version of this page is available. .

RichEditRibbonContextTabCategoriesBuilder.AddShapeContextTabCategory() Method

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

Namespace: DevExpress.AspNetCore.RichEdit

Assembly: DevExpress.AspNetCore.RichEdit.v21.1.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