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

RichEditRibbonGroupNames.HeaderAndFooterNavigation Property

Gets the name of the Header and Footer tab’s Navigation group.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

#Declaration

C#
public static string HeaderAndFooterNavigation { get; }

#Property Value

Type Description
String

The “HeaderAndFooterNavigation” string.

#Remarks

The Navigation group is in the Header and Footer tab and includes the following items:

Go to Next Header Footer
A button navigates to the next header or footer.
Go to Page Footer
A button navigates to the current page’s footer.
Go to Page Header
A button navigates to the current page’s header.
Go to Previous Header Footer
A button navigates to the previous header or footer.
Link to Previous Header Footer
A checkable button links the selected header or footer to the corresponding header or footer of the previous section to display the same content.

Navigation Group

Use the HeaderAndFooterNavigation property to perform the following operations:

The following code snippet removes an item from this group.

Razor
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.HeaderAndFooter;
        string groupName = RichEditRibbonGroupNames.HeaderAndFooterNavigation;
        string itemName = RichEditBarItemNames.LinkToPreviousHeaderFooter;
        ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
    }
}
See Also