Class ToolbarType
Specifies how to display toolbar items in the SfRichTextEditor component when the toolbar items exceed the container space.
Inheritance
Namespace: Syncfusion.Blazor.RichTextEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class ToolbarType : Enum
Remarks
Controls how toolbar items behave when there is not enough space to display all of them.
Fields
Expand
Shows the number of toolbar items that can fit within the container space and creates an expanded menu with the remaining items.
Declaration
public const ToolbarType Expand
Field Value
Type | Description |
---|---|
ToolbarType | The expanded menu option for toolbar items. |
Remarks
Ideal for maintaining a clean look with minimal space usage.
MultiRow
Wraps the toolbar items over multiple lines when the toolbar width exceeds the container space.
Declaration
public const ToolbarType MultiRow
Field Value
Type | Description |
---|---|
ToolbarType | The multi-row option for toolbar item display. |
Remarks
Useful for displaying all tools in view when height space permits.
Scrollable
Shows a scroll bar when the toolbar width exceeds the container space.
Declaration
public const ToolbarType Scrollable
Field Value
Type | Description |
---|---|
ToolbarType | The scrollable option allowing horizontal navigation. |
Remarks
Provides access to all items in constrained space.