RichEditRibbonTabCollectionBuilder.AddViewTab() Method
In This Article
Adds the View tab to the ribbon tab collection.
Namespace: DevExpress.AspNetCore.RichEdit
Assembly: DevExpress.AspNetCore.RichEdit.v24.2.dll
NuGet Package: DevExpress.AspNetCore.RichEdit
#Declaration
C#
public RichEditRibbonTabInfoBuilder AddViewTab()
#Returns
Type | Description |
---|---|
Rich |
An object that can be used to further configure the added tab. |
#Remarks
cshtml
@(Html.DevExpress().RichEdit("richEdit")
.Ribbon(ribbon => ribbon
.Tabs(tabs => {
tabs.Clear();
tabs.AddViewTab()
//...
See Also