Skip to main content

RichEditRibbonTabCollectionBuilder.AddTableDesignContextTab() Method

Adds the Table Design tab to the ribbon tab collection.

Namespace: DevExpress.AspNetCore.RichEdit

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

NuGet Package: DevExpress.AspNetCore.RichEdit

Declaration

public RichEditRibbonTabInfoBuilder AddTableDesignContextTab()

Returns

Type Description
RichEditRibbonTabInfoBuilder

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

Remarks

@(Html.DevExpress().RichEdit("richEdit")
    .Ribbon(ribbon => ribbon
        .Tabs(tabs => {
            tabs.Clear();
            tabs.AddTableDesignContextTab()
            //...
See Also