Back to Devexpress

RichEditRibbonTabNames.Home Property

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbontabnames-9e2e6711.md

latest2.3 KB
Original Source

RichEditRibbonTabNames.Home Property

Gets the Home tab’s name.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public static string Home { get; }

Property Value

TypeDescription
String

The “Home” string.

|

Remarks

The Home tab includes the following groups:

FontAllows users to change font settings.ParagraphAllows users to change paragraph settings.Undo/ClipboardAllows users to undo and redo the last operation and work with the Clipboard.

Use this property to perform the following operations with the Home tab:

The following code snippet removes an item from this tab’s group:

razor
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.Home;
        string groupName = RichEditRibbonGroupNames.HomeParagraph;
        string itemName = RichEditBarItemNames.ShowHiddenSymbols;
        ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
    }
}

See Also

RichEditRibbonTabNames Class

RichEditRibbonTabNames Members

DevExpress.Blazor.RichEdit Namespace