blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-f1a0472e.md
Gets the Font Italic item’s name.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string FontItalic { get; }
| Type | Description |
|---|---|
| String |
The “FontItalic” string.
|
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