RichEditContextMenuItemNames.UpdateField Field
Gets the Update Field item’s name.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public const string UpdateField = "UpdateField"
Field Value
Type | Description |
---|---|
String | The “UpdateField” string. |
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:
<DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>
@code {
void OnCustomizeContextMenu(IContextMenuItemCollection items) {
items.Remove(RichEditContextMenuItemNames.UpdateField);
}
}
See Also