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

    Contains names of all groups in the Rich Text Editor‘s built-in toolbar.

    Namespace: DevExpress.Blazor.RichEdit

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

    NuGet Package: DevExpress.Blazor.RichEdit

    Declaration

    public static class RichEditToolbarGroupNames

    Remarks

    You can use properties of this class to perform the following operations:

    The following code snippet removes the File group from the toolbar.

    <DxRichEdit BarMode=BarMode.Toolbar CustomizeToolbar=OnCustomizeToolbar />
    
    @code {
        void OnCustomizeToolbar(IToolbar toolbar) {
            toolbar.Groups.Remove(RichEditToolbarGroupNames.File);
        }
    }
    

    Run Demo: Toolbar Customization Run Demo: Ribbon Customization

    Inheritance

    Object
    RichEditToolbarGroupNames
    See Also