Skip to main content
All docs
V25.1
  • RichEditContextMenuItemNames.MergeTableCells Field

    Gets the Merge Table Cells item’s name.

    Namespace: DevExpress.Blazor.RichEdit

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

    NuGet Package: DevExpress.Blazor.RichEdit

    Declaration

    public const string MergeTableCells = "MergeTableCells"

    Field Value

    Type Description
    String

    The “MergeTableCells” string.

    Remarks

    Use this property to perform the following operations with the Merge Table Cells item:

    The Merge Table Cells item is a context menu item that merges selected cells into one cell. The Rich Text Editor disables this item when one table cell is selected.

    The following code snippet removes the Merge Table Cells item from the context menu:

    <DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>
    
    @code {
        void OnCustomizeContextMenu(IContextMenuItemCollection items) {
            items.Remove(RichEditContextMenuItemNames.MergeTableCells);
        }
    }
    
    See Also