Back to Devexpress

RichEditBarItemNames.FontItalic Property

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-f1a0472e.md

latest2.1 KB
Original Source

RichEditBarItemNames.FontItalic Property

Gets the Font Italic item’s name.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public static string FontItalic { get; }

Property Value

TypeDescription
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.

razor
<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

RichEditBarItemNames Class

RichEditBarItemNames Members

DevExpress.Blazor.RichEdit Namespace