Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change.
All docs
V24.1

HtmlEditorToolbarGroupNames Class

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

public static class HtmlEditorToolbarGroupNames

Remarks

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

The following code snippet removes the Insert Element group from the Html Editor‘s toolbar:

<DxHtmlEditor Width="100%"
              Height="200px"
              CustomizeToolbar="@OnCustomizeToolbar"/>

@code {
    void OnCustomizeToolbar(IToolbar toolbar) {
        toolbar.Groups.Remove(HtmlEditorToolbarGroupNames.InsertElement);
    }
}

Inheritance

Object
HtmlEditorToolbarGroupNames
See Also