New to Telerik UI for BlazorStart a free 30-day trial

Groups related editor tools together in the toolbar with visual separation for better organization. Use to create logical collections of related tools like text formatting (Bold, Italic, Underline) or alignment tools. Groups provide visual spacing and logical organization that improves user experience and toolbar clarity. Supports button-type tools and automatically handles group behavior and state management.

Definition

Namespace:Telerik.Blazor.Components.Editor

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class EditorButtonGroup : IEditorTool

Inheritance: objectEditorButtonGroup

Implements: IEditorTool

Constructors

C#
public EditorButtonGroup()
C#
public EditorButtonGroup(params ButtonTool[] tools)
Parameters:toolsButtonTool[]

Properties

C#
public string Class { get; set; }
C#
public bool Enabled { get; set; }

Contains the collection of button tools that belong to this group for logical organization. Add tools using the constructor or manipulate this collection directly to modify group contents. All tools in the group share the same visual styling and separation from other toolbar elements. Use to create related tool collections like formatting tools or table editing tools.

C#
public List<ButtonTool> Tools { get; set; }
C#
public string Width { get; set; }