Skip to main content
All docs
V25.1
  • RichEditContextMenuItemNames.ShowFontDialog Field

    Gets the Show Font Dialog item’s name.

    Namespace: DevExpress.Blazor.RichEdit

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

    NuGet Package: DevExpress.Blazor.RichEdit

    Declaration

    public const string ShowFontDialog = "ShowFontDialog"

    Field Value

    Type Description
    String

    The “ShowFontDialog” string.

    Remarks

    Use this property to perform the following operations with the Show Font Dialog item:

    The Show Font Dialog item is a context menu item. The item invokes the Font dialog that allows users to change font formatting of selected characters.

    The following code snippet removes the Show Font Dialog item from the context menu:

    <DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>
    
    @code {
        void OnCustomizeContextMenu(IContextMenuItemCollection items) {
            items.Remove(RichEditContextMenuItemNames.ShowFontDialog);
        }
    }
    
    See Also