Skip to main content
All docs
V25.1
  • RichEditBarItemNames Class

    Contains names of built-in items.

    Namespace: DevExpress.Blazor.RichEdit

    Assembly: DevExpress.Blazor.RichEdit.v25.1.dll

    NuGet Package: DevExpress.Blazor.RichEdit

    Declaration

    public static class RichEditBarItemNames

    Remarks

    Use properties of the RichEditBarItemNames class to perform the following operations:

    • Access and customize built-in items.
    • Add built-in items to groups.
    • Remove built-in items from groups.

    The following code snippet customizes the Paper Size Menu item:

    <DxRichEdit @ref=@rich CustomizeRibbon=OnCustomizeRibbon @bind-ReadOnly="@readOnly"/>
    
    @code {
        DxRichEdit rich;
        bool readOnly;
    
        void OnCustomizeRibbon(IRibbon ribbon) {
            IRibbonTab pageLayoutTab = ribbon.Tabs[RichEditRibbonTabNames.PageLayout];
            IBarGroup pageSetupGroup = pageLayoutTab.Groups[RichEditRibbonGroupNames.PageSetup];
            IBarItem paperSizeMenuItem = pageSetupGroup.Items[RichEditBarItemNames.PaperSizeMenu];
            if (paperSizeMenuItem.Type == BarItemTypes.DropDown) {
                IBarDropDown paperSizeDropDown = (IBarDropDown)paperSizeMenuItem;
                paperSizeDropDown.Items.Clear();
                paperSizeDropDown.Items.Add(RichEditBarItemNames.PaperSizeA4);
                paperSizeDropDown.Items.Add(RichEditBarItemNames.PaperSizeA5);
                paperSizeDropDown.Items.Add(RichEditBarItemNames.PaperSizeA6);
                paperSizeDropDown.GetEnabled = () => rich.ViewType == ViewType.PrintLayout;
                paperSizeDropDown.IconUrl = "your-item-url";
            }
            paperSizeMenuItem.Text = "Paper Size";
            paperSizeMenuItem.Tooltip = "Choose a paper size.";
            paperSizeMenuItem.GetVisible = () => !readOnly;
        }
    }
    

    Run Demo: Toolbar Customization Run Demo: Ribbon Customization

    Inheritance

    Object
    RichEditBarItemNames
    See Also