Back to Devexpress

RichEditBarItemNames.RemoveSpacingAfterParagraph Property

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-b655c3f3.md

latest3.1 KB
Original Source

RichEditBarItemNames.RemoveSpacingAfterParagraph Property

Gets the Remove Spacing After Paragraph item’s name.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public static string RemoveSpacingAfterParagraph { get; }

Property Value

TypeDescription
String

The “RemoveSpacingAfterParagraph” string.

|

Remarks

Use this property to perform the following operations with the Remove Spacing After Paragraph item:

The Remove Spacing After Paragraph item is a button in the Line Spacing Menu. This button allows users to remove a space after the selected paragraphs.

The following code snippet removes the Remove Spacing After Paragraph item from the Line Spacing Menu:

razor
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        IBarItem lineSpacingMenu = ribbon.Tabs[RichEditRibbonTabNames.Home].Groups[RichEditRibbonGroupNames.HomeParagraph].Items[RichEditBarItemNames.LineSpacingMenu];
        if (lineSpacingMenu.Type == BarItemTypes.DropDown) {
            IBarDropDown lineSpacingDropDown = (IBarDropDown)lineSpacingMenu;
            lineSpacingDropDown.Items.Remove(RichEditBarItemNames.AddSpacingAfterParagraph);
            lineSpacingDropDown.Items.Remove(RichEditBarItemNames.AddSpacingBeforeParagraph);
            lineSpacingDropDown.Items.Remove(RichEditBarItemNames.LineSpacingDouble);
            lineSpacingDropDown.Items.Remove(RichEditBarItemNames.LineSpacingSesquialteral);
            lineSpacingDropDown.Items.Remove(RichEditBarItemNames.LineSpacingSingle);
            lineSpacingDropDown.Items.Remove(RichEditBarItemNames.RemoveSpacingAfterParagraph);
            lineSpacingDropDown.Items.Remove(RichEditBarItemNames.RemoveSpacingBeforeParagraph);
        }
    }
}

See Also

RichEditBarItemNames Class

RichEditBarItemNames Members

DevExpress.Blazor.RichEdit Namespace