Skip to main content
All docs
V24.2

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

DxRichEdit.ContextMenuEnabled Property

Specifies whether context menu functionality is enabled.

Namespace: DevExpress.Blazor.RichEdit

Assembly: DevExpress.Blazor.RichEdit.v24.2.dll

NuGet Package: DevExpress.Blazor.RichEdit

#Declaration

C#
[Parameter]
public bool ContextMenuEnabled { get; set; }

#Property Value

Type Description
Boolean

true to enable the context menu; otherwise, false.

#Remarks

Set the Enabled property to false to disable the context menu in the Rich Text Editor.

Razor
<DxRichEdit ContextMenuEnabled="false"/>

You can also handle the CustomizeContextMenu event to control availability and visibility of individual menu items.

Run Demo: Context Menu Customization

See Also