Skip to main content

RichEditBarItemNames.ParagraphAlignmentCenter Property

Gets the Paragraph Alignment Center item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string ParagraphAlignmentCenter { get; }

Property Value

Type Description
String

The “ParagraphAlignmentCenter” string.

Remarks

Use this property to perform the following operations with the Paragraph Alignment Center item:

The Paragraph Alignment Center item is a button in the Paragraph Alignment Menu. This button allows users to center the selected paragraphs on the page.

The example below demonstrates how to remove the Paragraph Alignment Center item from the Paragraph Alignment Menu:

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        IBarItem paragraphAlignmentMenu = ribbon.Tabs[RichEditRibbonTabNames.Home].Groups[RichEditRibbonGroupNames.HomeParagraph].Items[RichEditBarItemNames.ParagraphAlignmentMenu];
        if (paragraphAlignmentMenu.Type == BarItemTypes.DropDown) {
            IBarDropDown paragraphAlignmentDropDown = (IBarDropDown)paragraphAlignmentMenu;
            paragraphAlignmentDropDown.Items.Remove(RichEditBarItemNames.ParagraphAlignmentCenter);
            paragraphAlignmentDropDown.Items.Remove(RichEditBarItemNames.ParagraphAlignmentJustify);
            paragraphAlignmentDropDown.Items.Remove(RichEditBarItemNames.ParagraphAlignmentLeft);
            paragraphAlignmentDropDown.Items.Remove(RichEditBarItemNames.ParagraphAlignmentRight);
        }
    }
}
See Also