RichEditToolbarGroupNames Class
Contains names of all groups in the Rich Text Editor‘s built-in toolbar.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.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 following code snippet removes the File group from the toolbar.
<DxRichEdit BarMode=BarMode.Toolbar CustomizeToolbar=OnCustomizeToolbar />
@code {
void OnCustomizeToolbar(IToolbar toolbar) {
toolbar.Groups.Remove(RichEditToolbarGroupNames.File);
}
}
Inheritance
Object
RichEditToolbarGroupNames
See Also