Back to Devexpress

RichEditContextMenuItemNames.ShowHyperlinkDialog Field

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditcontextmenuitemnames-05975132.md

latest1.9 KB
Original Source

RichEditContextMenuItemNames.ShowHyperlinkDialog Field

Gets the Show Hyperlink Dialog item’s name.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public const string ShowHyperlinkDialog = "ShowHyperlinkDialog"

Field Value

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

razor
<DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>

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

See Also

RichEditContextMenuItemNames Class

RichEditContextMenuItemNames Members

DevExpress.Blazor.RichEdit Namespace