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.ActiveRibbonTabIndex Property

Specifies the active ribbon tab’s index.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

#Declaration

C#
[DefaultValue(1)]
[Parameter]
public int ActiveRibbonTabIndex { get; set; }

#Property Value

Type Default Description
Int32 1

A zero-based tab index.

#Remarks

Use the ActiveRibbonTabIndex property to specify the active ribbon tab.

Razor
<DxRichEdit ViewType="ViewType.Simple" ActiveRibbonTabIndex="6" />

Run Demo: Simple View

When the active tab is changed, the ActiveRibbonTabIndexChanged event fires.

See Also