blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbongroupnames-035c651a.md
Gets the name of the Layout tab’s Merge group.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string LayoutMerge { get; }
| Type | Description |
|---|---|
| String |
The “LayoutMerge” string.
|
The Merge group is in the Layout tab and includes the following items:
Merge Table CellsThe button merges the selected cells into one cell.Show Split Cells DialogThe button invokes the Split Cells dialog that allows users to split selected table cells into multiple new cells.
Use the LayoutMerge 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.TableLayout;
string groupName = RichEditRibbonGroupNames.LayoutMerge;
string itemName = RichEditBarItemNames.ShowSplitCellsDialog;
ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
}
}
See Also
RichEditRibbonGroupNames Class