ClassEditorButtonGroup
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:
public class EditorButtonGroup : IEditorTool
Inheritance: objectEditorButtonGroup
Implements:
Constructors
EditorButtonGroup()
Declaration
public EditorButtonGroup()
EditorButtonGroup(params ButtonTool[])
Declaration
public EditorButtonGroup(params ButtonTool[] tools)
Parameters
tools
Properties
Tools
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.
Declaration
public List<ButtonTool> Tools { get; set; }
Property Value