Skip to main content
A newer version of this page is available. .

RichEditRibbonGroupNames Class

Contains names of all groups in the built-in ribbon.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static class RichEditRibbonGroupNames

Remarks

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

The example below removes the Insert Text group from the Insert tab.

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.Insert;
        string groupName = RichEditRibbonGroupNames.InsertText;
        ribbon.Tabs[tabName].Groups.Remove(groupName);
    }
}

Run Demo: Toolbar Customization Run Demo: Ribbon Customization

Inheritance

Object
RichEditRibbonGroupNames
See Also