Skip to main content
All docs
V24.1

RichEditContextMenuItemNames.ShowParagraphDialog Field

Gets the Show Paragraph Dialog item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public const string ShowParagraphDialog = "ShowParagraphDialog"

Field Value

Type Description
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:

<DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>

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