blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbongroupnames-fe65a1b6.md
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
public static string MailMergeCurrentRecord { get; }
| Type | Description |
|---|---|
| String |
The “MailMergeCurrentRecord” string.
|
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.
<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