Back to Devexpress

RichEditRibbonGroupNames.MailMergeCurrentRecord Property

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbongroupnames-fe65a1b6.md

latest2.7 KB
Original Source

RichEditRibbonGroupNames.MailMergeCurrentRecord Property

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

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public static string MailMergeCurrentRecord { get; }

Property Value

TypeDescription
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:

Use the MailMergeCurrentRecord 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.MailMergeCurrentRecord;
        string itemName = RichEditBarItemNames.LastRecord;
        ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
    }
}

See Also

RichEditRibbonGroupNames Class

RichEditRibbonGroupNames Members

DevExpress.Blazor.RichEdit Namespace