RichEditBarItemNames.TextWrapTopAndBottom Property
Gets the Text Wrap Top and Bottom item’s name.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public static string TextWrapTopAndBottom { get; }
Property Value
Type | Description |
---|---|
String | The “TextWrapTopAndBottom” string. |
Remarks
Use this property to perform the following operations with the Text Wrap Top and Bottom item:
- Access the item’s properties
- Add the item to a group
- Remove the item from a group
- Remove the item from the Text Wrap Menu
The Text Wrap Top and Bottom item is a button in the Text Wrap Menu. The button places the text above and below the selected image or text box.
The following code snippet removes the Text Wrap Top and Bottom item from the Text Wrap Menu:
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
@code {
void onCustomizeRibbon(IRibbon ribbon) {
IBarItem textWrapMenu = ribbon.Tabs[RichEditRibbonTabNames.FloatingObjectFormat].Groups[RichEditRibbonGroupNames.FormatArrange].Items[RichEditBarItemNames.TextWrapMenu];
if (textWrapMenu.Type == BarItemTypes.DropDown) {
IBarDropDown textWrapDropDown = (IBarDropDown)textWrapMenu;
textWrapDropDown.Items.Remove(RichEditBarItemNames.TextWrapBehindText);
textWrapDropDown.Items.Remove(RichEditBarItemNames.TextWrapInFrontOfText);
textWrapDropDown.Items.Remove(RichEditBarItemNames.TextWrapInline);
textWrapDropDown.Items.Remove(RichEditBarItemNames.TextWrapSquare);
textWrapDropDown.Items.Remove(RichEditBarItemNames.TextWrapThrough);
textWrapDropDown.Items.Remove(RichEditBarItemNames.TextWrapTight);
textWrapDropDown.Items.Remove(RichEditBarItemNames.TextWrapTopAndBottom);
}
}
}
See Also