Skip to main content

RichEditBarItemNames.TableCellAlignBottomCenter Property

Gets the Table Cell Align Bottom Center item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string TableCellAlignBottomCenter { get; }

Property Value

Type Description
String

The “TableCellAlignBottomCenter” string.

Remarks

Use this property to perform the following operations with the Table Cell Align Bottom Center item:

The Table Cell Align Bottom Center item is a button in the Cell Alignment Menu. The button centers the text in the selected cells and aligns the text to the bottom of the cell.

The example below demonstrates how to remove the Table Cell Align Bottom Center item from the Cell Alignment Menu:

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        IBarItem cellAlignmentMenu = ribbon.Tabs[RichEditRibbonTabNames.TableLayout]
        .Groups[RichEditRibbonGroupNames.LayoutAlignment]
        .Items[RichEditBarItemNames.CellAlignmentMenu];
        if (cellAlignmentMenu.Type == BarItemTypes.DropDown) {
            IBarDropDown cellAlignmentDropDown = (IBarDropDown)cellAlignmentMenu;
            cellAlignmentDropDown.Items.Remove(RichEditBarItemNames.TableCellAlignBottomCenter);
            cellAlignmentDropDown.Items.Remove(RichEditBarItemNames.TableCellAlignBottomLeft);
            cellAlignmentDropDown.Items.Remove(RichEditBarItemNames.TableCellAlignBottomRight);
            cellAlignmentDropDown.Items.Remove(RichEditBarItemNames.TableCellAlignMiddleCenter);
            cellAlignmentDropDown.Items.Remove(RichEditBarItemNames.TableCellAlignMiddleLeft);
            cellAlignmentDropDown.Items.Remove(RichEditBarItemNames.TableCellAlignMiddleRight);
            cellAlignmentDropDown.Items.Remove(RichEditBarItemNames.TableCellAlignTopCenter);
            cellAlignmentDropDown.Items.Remove(RichEditBarItemNames.TableCellAlignTopLeft);
            cellAlignmentDropDown.Items.Remove(RichEditBarItemNames.TableCellAlignTopRight);
        }
    }
}
See Also