HtmlEditorToolbarGroupNames Class
Contains names of all groups in the built-in toolbar.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
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