Skip to main content

RichEditBarItemNames.ClosePageHeaderFooter Property

Gets the Close Page Header Footer item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string ClosePageHeaderFooter { get; }

Property Value

Type Description
String

The “ClosePageHeaderFooter” string.

Remarks

Use this property to perform the following operations:

The Close Page Header Footer item is a button in the Close group.

The example below demonstrates how to remove the Close Page Header Footer item from the ribbon:

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

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