blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbontabnames-9e2e6711.md
Gets the Home tab’s name.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string Home { get; }
| Type | Description |
|---|---|
| String |
The “Home” string.
|
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:
<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