Skip to main content

RichEditRibbonTabCollectionBuilder.AddTableLayoutContextTab() Method

Adds the Table Layout 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 AddTableLayoutContextTab()

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.AddTableLayoutContextTab()
            //...
See Also