Skip to main content
All docs
V24.1

RichEditContextMenuItemNames.IncreaseIndent Field

Gets the Increase Indent item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public const string IncreaseIndent = "IncreaseIndent"

Field Value

Type Description
String

The “IncreaseIndent” string.

Remarks

Use this property to perform the following operations with the Increase Indent item:

The Increase Indent item is a context menu item that allows users to increase the indent of selected paragraphs.

The following code snippet removes the Increase Indent item from the context menu:

<DxRichEdit CustomizeContextMenu="OnCustomizeContextMenu"/>

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