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

DxRichEdit.RibbonVisible Property

OBSOLETE

This property is obsolete now. Use the BarMode property instead.

Specifies whether the ribbon is visible.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

#Declaration

C#
[Browsable(false)]
[Obsolete("This property is obsolete now. Use the BarMode property instead.")]
[Parameter]
public bool RibbonVisible { get; set; }

#Property Value

Type Description
Boolean

true to display the ribbon; otherwise, false.

#Remarks

Rich Text Editor displays the ribbon at the top of the component.

Rich Edit - Ribbon

Set the RibbonVisible property to false to hide the ribbon.

Razor
<DxRichEdit RibbonVisible="false" />

Rich Edit - Without Ribbon

You can handle the RibbonVisibleChanged event to be notified when the ribbon visibility is changed.

See Also