Skip to main content
All docs
V25.1
  • RichEditRibbonGroupNames.LayoutMerge Property

    Gets the name of the Layout tab’s Merge group.

    Namespace: DevExpress.Blazor.RichEdit

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

    NuGet Package: DevExpress.Blazor.RichEdit

    Declaration

    public static string LayoutMerge { get; }

    Property Value

    Type Description
    String

    The “LayoutMerge” string.

    Remarks

    The Merge group is in the Layout tab and includes the following items:

    Merge Table Cells
    The button merges the selected cells into one cell.
    Show Split Cells Dialog
    The button invokes the Split Cells dialog that allows users to split selected table cells into multiple new cells.

    Merge Group

    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