Skip to main content

RichEditRibbonTabNames.Insert Property

Gets the Insert tab’s name.

Namespace: DevExpress.Blazor.RichEdit

Assembly: DevExpress.Blazor.RichEdit.v23.2.dll

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string Insert { get; }

Property Value

Type Description
String

The “Insert” string.

Remarks

The Insert tab includes the following groups:

Header and Footer
Allows users to insert the number of the current page and total number of pages, create and edit headers and footers.
Illustrations
Allows users to insert a picture from a file.
Links
Allows users to create bookmarks and hyperlinks.
Tables
Allows users to insert tables.
Text
Allows users to insert text boxes.

Insert Tab

Use this property to perform the following operations with the Insert tab:

The example below demonstrates how to remove an item from this tab’s group:

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.Insert;
        string groupName = RichEditRibbonGroupNames.InsertHeaderAndFooter;
        string itemName = RichEditBarItemNames.InsertPageCount;
        ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
    }
}
See Also