Skip to main content

RichEditBarItemNames.PositionTopCenter Property

Gets the Position Top Center item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string PositionTopCenter { get; }

Property Value

Type Description
String

The “PositionTopCenter” string.

Remarks

Use this property to perform the following operations with the Position Top Center item:

The Position Top Center item is a button in the Position Menu. The button aligns the selected floating image or text box to the top center of the page. The Rich Text Editor disables this button when an inline image is selected.

The example below demonstrates how to remove the Position Top Center item from the Position Menu:

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        IBarItem positionMenu = ribbon.Tabs[RichEditRibbonTabNames.FloatingObjectFormat].Groups[RichEditRibbonGroupNames.FormatArrange].Items[RichEditBarItemNames.PositionMenu];
        if (positionMenu.Type == BarItemTypes.DropDown) {
            IBarDropDown positionDropDown = (IBarDropDown)positionMenu;
            positionDropDown.Items.Remove(RichEditBarItemNames.PositionBottomCenter);
            positionDropDown.Items.Remove(RichEditBarItemNames.PositionBottomLeft);
            positionDropDown.Items.Remove(RichEditBarItemNames.PositionBottomRight);
            positionDropDown.Items.Remove(RichEditBarItemNames.PositionMiddleCenter);
            positionDropDown.Items.Remove(RichEditBarItemNames.PositionMiddleLeft);
            positionDropDown.Items.Remove(RichEditBarItemNames.PositionMiddleRight);
            positionDropDown.Items.Remove(RichEditBarItemNames.PositionTopCenter);
            positionDropDown.Items.Remove(RichEditBarItemNames.PositionTopLeft);
            positionDropDown.Items.Remove(RichEditBarItemNames.PositionTopRight);
        }
    }
}
See Also