blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbongroupnames-f7b8a993.md
Gets the name of the Home tab’s Paragraph group.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string HomeParagraph { get; }
| Type | Description |
|---|---|
| String |
The “HomeParagraph” string.
|
The Paragraph group is in the Home tab and includes the following items:
Indent MenuA drop-down menu that allows users to increase and decrease the indent of the selected paragraphs.Line Spacing MenuA drop-down menu that allows users to change spacing between the selected lines.Numbering MenuA drop-down menu that allows users to start a bullet, numbered, or multilevel list.Paragraph Alignment MenuA drop-down menu that allows users to align paragraphs.Paragraph ShadingA color edit that allows users to change the background behind the selected text.Paragraph StylesA combo box that allows users to change the style of the selected paragraphs.Show Hidden SymbolsA checkable button that allows users to show or hide formatting symbols.
Use the HomeParagraph property to perform the following operations:
The following code snippet removes an item from this 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
RichEditRibbonGroupNames Class