Skip to main content
All docs
V25.1
  • RichEditBarItemNames.PositionMiddleCenter Property

    Gets the Position Middle Center item’s name.

    Namespace: DevExpress.Blazor.RichEdit

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

    NuGet Package: DevExpress.Blazor.RichEdit

    Declaration

    public static string PositionMiddleCenter { get; }

    Property Value

    Type Description
    String

    The “PositionMiddleCenter” string.

    Remarks

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

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

    The following code snippet removes the Position Middle 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