Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BarMode Enum

Lists values that specify how the Rich Text Editor displays its command bar.

Namespace: DevExpress.Blazor.Office

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
public enum BarMode

#Members

Name Description
Ribbon

The editor displays a ribbon.

Toolbar

The editor displays a toolbar.

None

The editor does not display a command bar.

#Related API Members

The following properties accept/return BarMode values:

#Remarks

The Rich Text Editor can display its command bar in two ways:

The following code snippet displays the Rich Text Editor’s toolbar.

Razor
<DxRichEdit BarMode=BarMode.Toolbar/>

Run Demo: Toolbar Customization

See Also