blazor-devexpress-dot-blazor-dot-richedit-dot-richeditcontextmenuitemnames-95495b1c.md
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
public const string InsertTableRowBelow = "InsertTableRowBelow"
| Type | Description |
|---|---|
| String |
The “InsertTableRowBelow” string.
|
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:
<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