RichEditRibbonGroupNames.MailMergeCurrentRecord Property
Gets the name of the Mail Merge tab’s Current Record group.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.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:
Use the MailMergeCurrentRecord
property to perform the following operations:
- Access the Current Record group’s properties.
- Add/remove the group to/from the toolbar or the ribbon’s tab.
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