blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbongroupnames-63e27289.md
Gets the name of the Mail Merge tab’s Insert Fields group.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string MailMergeInsertFields { get; }
| Type | Description |
|---|---|
| String |
The “MailMergeInsertFields” string.
|
The Insert Fields group is in the Mail Merge tab and includes the following items:
Insert Field MenuThe drop-down allows users to insert fields at the caret position.Show Insert Merge Field DialogThe button invokes the Insert Merge Field dialog and allows users to insert MERGEFIELD fields.
Use the MailMergeInsertFields property to perform the following operations:
The following code snippet removes an item from this group.
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
@code {
void onCustomizeRibbon(IRibbon ribbon) {
string tabName = RichEditRibbonTabNames.MailMerge;
string groupName = RichEditRibbonGroupNames.MailMergeInsertField;
string itemName = RichEditBarItemNames.ShowInsertMergeFieldDialog;
ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
}
}
See Also
RichEditRibbonGroupNames Class