Back to Devexpress

RichEditRibbonGroupNames.InsertText Property

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbongroupnames.md

latest2.3 KB
Original Source

RichEditRibbonGroupNames.InsertText Property

Gets the name of the Insert tab’s Text group.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public static string InsertText { get; }

Property Value

TypeDescription
String

The “InsertText” string.

|

Remarks

The Text group is in the Insert tab. This group includes the Insert Text Box item that allows users to insert a text box in a document.

Use the InsertText property to perform the following operations:

The following code snippet removes this group from the Insert tab:

razor
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.Insert;
        string groupName = RichEditRibbonGroupNames.InsertText;
        ribbon.Tabs[tabName].Groups.Remove(groupName);
    }
}

See Also

RichEditRibbonGroupNames Class

RichEditRibbonGroupNames Members

DevExpress.Blazor.RichEdit Namespace