RichEditRibbonContextTabCategoriesBuilder.AddShapeContextTabCategory() Method
In This Article
Adds the Shape context tab category to the context tab category collection.
Namespace: DevExpress.AspNetCore.RichEdit
Assembly: DevExpress.AspNetCore.RichEdit.v24.2.dll
NuGet Package: DevExpress.AspNetCore.RichEdit
#Declaration
C#
public RichEditRibbonContextTabCategoryInfoBuilder AddShapeContextTabCategory()
#Returns
Type | Description |
---|---|
Rich |
An object that can be used to further configure the added category. |
#Remarks
cshtml
@(Html.DevExpress().RichEdit("richEdit")
.Ribbon(ribbon => ribbon
.ContextTabCategories(categories => {
categories.Clear();
categories.AddShapeContextTabCategory();
})
//...
See Also