RichEditBarItemNames.ClosePageHeaderFooter Property
In This Article
Gets the Close Page Header Footer item’s name.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.2.dll
NuGet Package: DevExpress.Blazor.RichEdit
#Declaration
C#
public static string ClosePageHeaderFooter { get; }
#Property Value
Type | Description |
---|---|
String | The “Close |
#Remarks
Use this property to perform the following operations:
The Close Page Header Footer item is a button in the Close group.
The following code snippet removes the Close Page Header Footer item from the ribbon:
Razor
<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