Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

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

<DxRichEdit RibbonVisible="false" />

Rich Edit - Without Ribbon

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

See Also