Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RichEditRibbonGroupNames.MailMergeInsertFields Property

Gets the name of the Mail Merge tab’s Insert Fields group.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

#Declaration

C#
public static string MailMergeInsertFields { get; }

#Property Value

Type Description
String

The “MailMergeInsertFields” string.

#Remarks

The Insert Fields group is in the Mail Merge tab and includes the following items:

Insert Field Menu
The drop-down allows users to insert fields at the caret position.
Show Insert Merge Field Dialog
The button invokes the Insert Merge Field dialog and allows users to insert MERGEFIELD fields.

Insert Fields Group

Use the MailMergeInsertFields property to perform the following operations:

The following code snippet removes an item from this group.

Razor
<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