RichEditContextMenuItemNames.UpdateField Field
In This Article
Gets the Update Field item’s name.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.2.dll
NuGet Package: DevExpress.Blazor.RichEdit
#Declaration
C#
public const string UpdateField = "UpdateField"
#Field Value
Type | Description |
---|---|
String | The “Update |
#Remarks
Use this property to perform the following operations with the Update Field item:
The Update Field item is a context menu item that updates the current field.
The following code snippet removes the Update Field item from the context menu:
Razor
<DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>
@code {
void OnCustomizeContextMenu(IContextMenuItemCollection items) {
items.Remove(RichEditContextMenuItemNames.UpdateField);
}
}
See Also