blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-6e1cf864.md
Gets the Paragraph Alignment Justify item’s name.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string ParagraphAlignmentJustify { get; }
| Type | Description |
|---|---|
| String |
The “ParagraphAlignmentJustify” string.
|
Use this property to perform the following operations with the Paragraph Alignment Justify item:
The Paragraph Alignment Justify item is a button in the Paragraph Alignment Menu. This button allows users to align the selected paragraphs with the left and right margins.
The following code snippet removes the Paragraph Alignment Justify item from the Paragraph Alignment Menu:
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
@code {
void onCustomizeRibbon(IRibbon ribbon) {
IBarItem paragraphAlignmentMenu = ribbon.Tabs[RichEditRibbonTabNames.Home].Groups[RichEditRibbonGroupNames.HomeParagraph].Items[RichEditBarItemNames.ParagraphAlignmentMenu];
if (paragraphAlignmentMenu.Type == BarItemTypes.DropDown) {
IBarDropDown paragraphAlignmentDropDown = (IBarDropDown)paragraphAlignmentMenu;
paragraphAlignmentDropDown.Items.Remove(RichEditBarItemNames.ParagraphAlignmentCenter);
paragraphAlignmentDropDown.Items.Remove(RichEditBarItemNames.ParagraphAlignmentJustify);
paragraphAlignmentDropDown.Items.Remove(RichEditBarItemNames.ParagraphAlignmentLeft);
paragraphAlignmentDropDown.Items.Remove(RichEditBarItemNames.ParagraphAlignmentRight);
}
}
}
See Also