Back to Devexpress

RichEditContextMenuItemNames.ShowParagraphDialog Field

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

latest2.0 KB
Original Source

RichEditContextMenuItemNames.ShowParagraphDialog Field

Gets the Show Paragraph 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 ShowParagraphDialog = "ShowParagraphDialog"

Field Value

TypeDescription
String

The “ShowParagraphDialog” string.

|

Remarks

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

The Show Paragraph Dialog item is a context menu item. The item invokes the Paragraph dialog that allows users to modify properties of selected paragraphs.

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

razor
<DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>

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

See Also

RichEditContextMenuItemNames Class

RichEditContextMenuItemNames Members

DevExpress.Blazor.RichEdit Namespace