Skip to main content

RichEditRibbonTabCollectionBuilder.AddPageLayoutTab() Method

Adds the Page 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 AddPageLayoutTab()

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