Skip to main content
All docs
V24.1

DxRichEdit.ContextMenuEnabled Property

Specifies whether context menu functionality is enabled.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

[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.

<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