Back to Devexpress

RichEditRibbonGroupNames.HomeParagraph Property

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

latest3.7 KB
Original Source

RichEditRibbonGroupNames.HomeParagraph Property

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

Declaration

csharp
public static string HomeParagraph { get; }

Property Value

TypeDescription
String

The “HomeParagraph” string.

|

Remarks

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.

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

RichEditRibbonGroupNames Class

RichEditRibbonGroupNames Members

DevExpress.Blazor.RichEdit Namespace