RibbonTabCollectionBuilder<TTabCollectionBuilder, TTabInfoBuilder, TItemCollectionBuilder>.Clear() Method
Removes all tabs from the ribbon tab collection.
Namespace: DevExpress.AspNetCore.Office
Assembly: DevExpress.AspNetCore.Common.v24.1.dll
NuGet Package: DevExpress.AspNetCore.Common
Declaration
public TTabCollectionBuilder Clear()
Returns
Type | Description |
---|---|
TTabCollectionBuilder | An object that can be used to further configure the tab collection. |
Remarks
@(Html.DevExpress().RichEdit("richEdit")
.Ribbon(ribbon => ribbon
.Tabs(tabs => {
tabs.Clear();
//...
See Also