Back to Devexpress

RichEditContextMenuItemNames.InsertTableRowBelow Field

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditcontextmenuitemnames-95495b1c.md

latest2.4 KB
Original Source

RichEditContextMenuItemNames.InsertTableRowBelow Field

Gets the Insert Table Row Below item’s name.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public const string InsertTableRowBelow = "InsertTableRowBelow"

Field Value

TypeDescription
String

The “InsertTableRowBelow” string.

|

Remarks

Use this property to perform the following operations with the Insert Table Row Below item:

The Insert Table Row Below item is a context menu item in the Insert Table Elements Menu. The item inserts a row below the selected row.

The following code snippet removes the Insert Table Row Below item from the Insert Table Elements Menu:

razor
<DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>

@code {
    void OnCustomizeContextMenu(IContextMenuItemCollection items) {
        IContextMenuItem tableElementsMenu = items[RichEditContextMenuItemNames.InsertTableElementsMenu];
        if(tableElementsMenu != null)
            tableElementsMenu.Items.Remove(RichEditContextMenuItemNames.InsertTableRowBelow);
    }
}

See Also

RichEditContextMenuItemNames Class

RichEditContextMenuItemNames Members

DevExpress.Blazor.RichEdit Namespace