RichEditBarItemNames.FontItalic Property
In This Article
Gets the Font Italic item’s name.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.2.dll
NuGet Package: DevExpress.Blazor.RichEdit
#Declaration
C#
public static string FontItalic { get; }
#Property Value
Type | Description |
---|---|
String | The “Font |
#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