Skip to main content

RichEditRibbonGroupNames.MailMergeCurrentRecord Property

Gets the name of the Mail Merge tab’s Current Record group.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string MailMergeCurrentRecord { get; }

Property Value

Type Description
String

The “MailMergeCurrentRecord” string.

Remarks

The Current Record group is in the Mail Merge tab and includes the following items that allow users to navigate through data records:

Current Record Group

Use the MailMergeCurrentRecord property to perform the following operations:

The example below removes an item from this group.

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.MailMerge;
        string groupName = RichEditRibbonGroupNames.MailMergeCurrentRecord;
        string itemName = RichEditBarItemNames.LastRecord;
        ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
    }
}
See Also