blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-ebff32eb.md
Gets the Position Top Center item’s name.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string PositionTopCenter { get; }
| Type | Description |
|---|---|
| String |
The “PositionTopCenter” string.
|
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 following code snippet removes 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