Skip to main content
All docs
V25.2
  • RichEditRibbonTabNames.Insert Property

    Gets the Insert tab’s name.

    Namespace: DevExpress.Blazor.RichEdit

    Assembly: DevExpress.Blazor.RichEdit.v25.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 following code snippet removes 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