RichEditRibbonTabCollectionBuilder.AddReferencesTab() Method
Adds the References tab to the ribbon tab collection.
Namespace: DevExpress.AspNetCore.RichEdit
Assembly: DevExpress.AspNetCore.RichEdit.v24.1.dll
NuGet Package: DevExpress.AspNetCore.RichEdit
Declaration
public RichEditRibbonTabInfoBuilder AddReferencesTab()
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.AddReferencesTab()
//...
See Also