RichEditBarItemNames.ParagraphAlignmentRight Property
Gets the Paragraph Alignment Right item’s name.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public static string ParagraphAlignmentRight { get; }
Property Value
Type | Description |
---|---|
String | The “ParagraphAlignmentRight” string. |
Remarks
Use this property to perform the following operations with the Paragraph Alignment Right item:
- Access the item’s properties
- Add the item to a group
- Remove the item from a group
- Remove the item from the Paragraph Alignment Menu
The Paragraph Alignment Right item is a button in the Paragraph Alignment Menu. This button allows users to align the selected paragraphs with the right margin.
The following code snippet removes the Paragraph Alignment Right 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