RichEditRibbonTabCollectionBuilder.AddInsertTab() Method
In This Article
Adds the Insert 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 AddInsertTab()
#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.AddInsertTab()
//...
See Also