Back to Devexpress

RichEditBarItemNames.TextWrapInline Property

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-aeae696f.md

latest3.1 KB
Original Source

RichEditBarItemNames.TextWrapInline Property

Gets the Text Wrap Inline item’s name.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public static string TextWrapInline { get; }

Property Value

TypeDescription
String

The “TextWrapInline” string.

|

Remarks

Use this property to perform the following operations with the Text Wrap Inline item:

The Text Wrap Inline item is a button in the Text Wrap Menu. The button places the selected image in the text and the Rich Text Editor treats this image like a character. The Rich Text Editor disables this button when a text box is selected.

The following code snippet removes the Text Wrap Inline item from the Text Wrap Menu:

razor
<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

RichEditBarItemNames Class

RichEditBarItemNames Members

DevExpress.Blazor.RichEdit Namespace