blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbongroupnames-a11a9a9c.md
Gets the name of the Header and Footer tab’s Navigation group.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string HeaderAndFooterNavigation { get; }
| Type | Description |
|---|---|
| String |
The “HeaderAndFooterNavigation” string.
|
The Navigation group is in the Header and Footer tab and includes the following items:
Go to Page HeaderA button navigates to the current page’s header.Go to Page FooterA button navigates to the current page’s footer.Go to Previous Header FooterA button navigates to the previous header or footer.Go to Next Header FooterA button navigates to the next header or footer.Link to Previous Header FooterA checkable button links the selected header or footer to the corresponding header or footer of the previous section to display the same content.
Use the HeaderAndFooterNavigation property to perform the following operations:
The following code snippet removes an item from this group.
<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
RichEditRibbonGroupNames Class