RichEditContextMenuItemNames.InsertTableRowBelow Field
Gets the Insert Table Row Below item’s name.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public const string InsertTableRowBelow = "InsertTableRowBelow"
Field Value
Type | Description |
---|---|
String | The “InsertTableRowBelow” string. |
Remarks
Use this property to perform the following operations with the Insert Table Row Below item:
- Access the item’s properties
- Add/remove the item to/from a menu
- Remove the item from the Insert Table Elements Menu
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