blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-a14140f8.md
Gets the Insert Page Field item’s name.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string InsertPageField { get; }
| Type | Description |
|---|---|
| String |
The “InsertPageField” string.
|
Use this property to perform the following operations with the Insert Page Field item:
The Insert Page Field item is a button in the Insert Field Menu. This button inserts the PAGE field at the caret position and updates this field.
The following code snippet removes the Insert Page Field item from the Insert Field Menu:
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
@code {
void onCustomizeRibbon(IRibbon ribbon) {
IBarItem insertFieldMenu = ribbon.Tabs[RichEditRibbonTabNames.MailMerge].Groups[RichEditRibbonGroupNames.MailMergeInsertFields].Items[RichEditBarItemNames.InsertFieldMenu];
if (insertFieldMenu.Type == BarItemTypes.DropDown) {
IBarDropDown insertFieldDropDown = (IBarDropDown)insertFieldMenu;
insertFieldDropDown.Items.Remove(RichEditBarItemNames.InsertDateField);
insertFieldDropDown.Items.Remove(RichEditBarItemNames.InsertDocVariableField);
insertFieldDropDown.Items.Remove(RichEditBarItemNames.InsertMergeField);
insertFieldDropDown.Items.Remove(RichEditBarItemNames.InsertNumpagesField);
insertFieldDropDown.Items.Remove(RichEditBarItemNames.InsertPageField);
insertFieldDropDown.Items.Remove(RichEditBarItemNames.InsertTimeField);
}
}
}
See Also