Skip to main content

RichEditToolbarGroupNames Class

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

Namespace: DevExpress.Blazor.RichEdit

Assembly: DevExpress.Blazor.RichEdit.v23.2.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 code below 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