RibbonTabCollectionBuilder<TTabCollectionBuilder, TTabInfoBuilder, TItemCollectionBuilder>.Add() Method
Adds a new tab to the end of the ribbon tab collection.
Namespace: DevExpress.AspNetCore.Office
Assembly: DevExpress.AspNetCore.Common.v24.2.dll
NuGet Package: DevExpress.AspNetCore.Common
#Declaration
public TTabInfoBuilder Add()
#Returns
Type | Description |
---|---|
TTab |
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.Add()
.Items(items => {
//...