RichEditRibbonGroupNames.HeaderAndFooterNavigation Property
Gets the name of the Header and Footer tab’s Navigation group.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
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.
Use the HeaderAndFooterNavigation
property to perform the following operations:
- Access the Navigation group’s properties.
- Add/remove the group to/from the toolbar or the ribbon’s tab.
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