Back to Devexpress

RichEditContextMenuItemNames.UpdateField Field

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditcontextmenuitemnames-4d995a63.md

latest1.7 KB
Original Source

RichEditContextMenuItemNames.UpdateField Field

Gets the Update Field item’s name.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public const string UpdateField = "UpdateField"

Field Value

TypeDescription
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:

razor
<DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>

@code {
    void OnCustomizeContextMenu(IContextMenuItemCollection items) {
        items.Remove(RichEditContextMenuItemNames.UpdateField);
    }
}

See Also

RichEditContextMenuItemNames Class

RichEditContextMenuItemNames Members

DevExpress.Blazor.RichEdit Namespace