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

RichEditRibbonTabCollectionBuilder.AddTableLayoutContextTab() Method

Adds the Table Layout tab to the ribbon tab collection.

Namespace: DevExpress.AspNetCore.RichEdit

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

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