Skip to main content
All docs
V25.1
  • RichEditBarItemNames.FontItalic Property

    Gets the Font Italic item’s name.

    Namespace: DevExpress.Blazor.RichEdit

    Assembly: DevExpress.Blazor.RichEdit.v25.1.dll

    NuGet Package: DevExpress.Blazor.RichEdit

    Declaration

    public static string FontItalic { get; }

    Property Value

    Type Description
    String

    The “FontItalic” string.

    Remarks

    The Font Italic item is a checkable button in the ribbon’s Font group and the toolbar’s Font group. This button allows users to italicize the selected text.

    Use the FontItalic property to perform the following operations:

    The following code snippet removes the Font Italic item from the ribbon.

    <DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
    
    @code {
        void onCustomizeRibbon(IRibbon ribbon) {
            string tabName = RichEditRibbonTabNames.Home;
            string groupName = RichEditRibbonGroupNames.HomeFont;
            string itemName = RichEditBarItemNames.FontItalic;
            ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
        }
    }
    
    See Also