RichEditBarItemNames.InsertMergeField Property
Gets the Insert Merge Field item’s name.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public static string InsertMergeField { get; }
Property Value
Type | Description |
---|---|
String | The “InsertMergeField” string. |
Remarks
Use this property to perform the following operations with the Insert Merge Field item:
- Access the item’s properties
- Add the item to a group
- Remove the item from a group
- Remove the item from the Insert Field Menu
The Insert Merge Field item is a button in the Insert Field Menu. This button inserts an empty MERGEFIELD field at the caret position.
The following code snippet removes the Insert Merge 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