Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RichEditRibbonGroupNames.HomeParagraph Property

Gets the name of the Home tab’s Paragraph group.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

#Declaration

C#
public static string HomeParagraph { get; }

#Property Value

Type Description
String

The “HomeParagraph” string.

#Remarks

The Paragraph group is in the Home tab and includes the following items:

Indent Menu
A drop-down menu that allows users to increase and decrease the indent of the selected paragraphs.
Line Spacing Menu
A drop-down menu that allows users to change spacing between the selected lines.
Numbering Menu
A drop-down menu that allows users to start a bullet, numbered, or multilevel list.
Paragraph Alignment Menu
A drop-down menu that allows users to align paragraphs.
Paragraph Shading
A color edit that allows users to change the background behind the selected text.
Paragraph Styles
A combo box that allows users to change the style of the selected paragraphs.
Show Hidden Symbols
A checkable button that allows users to show or hide formatting symbols.

Home Paragraph Group

Use the HomeParagraph property to perform the following operations:

The following code snippet removes an item from this 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