Skip to main content

RichEditBarItemNames.LineSpacingSesquialteral Property

Gets the Line Spacing Sesquialteral item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string LineSpacingSesquialteral { get; }

Property Value

Type Description
String

The “LineSpacingSesquialteral” string.

Remarks

Use this property to perform the following operations with the Line Spacing Sesquialteral item:

The Line Spacing Sesquialteral item is a button in the Line Spacing Menu. This button allows users to set sesquialteral line spacing between the selected paragraphs.

The example below demonstrates how to remove the Line Spacing Sesquialteral item from the Line Spacing Menu:

<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