Skip to main content
All docs
V24.1

RichEditContextMenuItemNames.ShowHyperlinkDialog Field

Gets the Show Hyperlink Dialog item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public const string ShowHyperlinkDialog = "ShowHyperlinkDialog"

Field Value

Type Description
String

The “ShowHyperlinkDialog” string.

Remarks

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

The Show Hyperlink Dialog item is a context menu item. The item invokes the Hyperlink dialog that allows users to create new hyperlinks.

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

<DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>

@code {
    void OnCustomizeContextMenu(IContextMenuItemCollection items) {
        items.Remove(RichEditContextMenuItemNames.ShowHyperlinkDialog);
    }
}
See Also