IContextMenuItem.IconUrl Property
Specifies the URL of the item’s icon.
Namespace: DevExpress.Blazor.Office
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
string IconUrl { get; set; }
Property Value
Type | Description |
---|---|
String | The icon’s URL. |
Remarks
DevExpress Blazor components support pre-defined icon sets (such as Iconic or Bootstrap-recommended libraries) and custom icon libraries. Refer to the following topic for more information: Icons.
Use any of the following properties to set an item’s icon:
IconUrl
- Specifies the URL of the item’s icon.
- IconCssClass
- Specifies the CSS class of the item’s icon. The IconCssClass property is not in effect if the
IconUrl
property value differs fromnull
or empty string.
The following code snippet specifies an icon’s URL for a custom menu item:
<DxRichEdit CustomizeContextMenu=OnCustomizeContextMenu/>
@code {
void OnCustomizeContextMenu(IContextMenuItemCollection items) {
var searchItem = items.AddCustomItem(0, "Google Search...", ...);
searchItem.IconUrl = "your-icon-url";
}
}
See Also