Skip to main content

RichEditBarItemNames.Lowercase Property

Gets the Lowercase item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string Lowercase { get; }

Property Value

Type Description
String

The “Lowercase” string.

Remarks

Use this property to perform the following operations with the Lowercase item:

The Lowercase item is a button in the Change Case Menu. This button allows users to change the case of the selected text to lowercase.

The example below demonstrates how to remove the Lowercase item from the Change Case Menu:

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        IBarItem changeCaseMenu = ribbon.Tabs[RichEditRibbonTabNames.Home].Groups[RichEditRibbonGroupNames.HomeFont].Items[RichEditBarItemNames.ChangeCaseMenu];
        if (changeCaseMenu.Type == BarItemTypes.DropDown) {
            IBarDropDown changeCaseDropDown = (IBarDropDown)changeCaseMenu;
            changeCaseDropDown.Items.Remove(RichEditBarItemNames.CapitalizeEachWord);
            changeCaseDropDown.Items.Remove(RichEditBarItemNames.Lowercase);
            changeCaseDropDown.Items.Remove(RichEditBarItemNames.SentenceCase);
            changeCaseDropDown.Items.Remove(RichEditBarItemNames.ToggleCase);
            changeCaseDropDown.Items.Remove(RichEditBarItemNames.Uppercase);
        }
    }
}
See Also