Back to Devexpress

RichEditRibbonGroupNames.LayoutMerge Property

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbongroupnames-035c651a.md

latest2.7 KB
Original Source

RichEditRibbonGroupNames.LayoutMerge Property

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

Declaration

csharp
public static string LayoutMerge { get; }

Property Value

TypeDescription
String

The “LayoutMerge” string.

|

Remarks

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.

razor
<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

RichEditRibbonGroupNames Members

DevExpress.Blazor.RichEdit Namespace