Back to Devexpress

HtmlEditorToolbarGroupNames Class

blazor-devexpress-dot-blazor-4780d4d4.md

latest1.5 KB
Original Source

HtmlEditorToolbarGroupNames Class

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

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
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:

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

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

Inheritance

Object HtmlEditorToolbarGroupNames

See Also

HtmlEditorToolbarGroupNames Members

DevExpress.Blazor Namespace