DxRibbonButtonBase<TClickEventArgs>.IconUrl Property
Specifies the icon URL for the Ribbon item.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(null)]
[Parameter]
public string IconUrl { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| String | null | The item icon’s URL. |
Remarks
Use the IconUrl property to specify an icon for the Ribbon item.
<DxRibbon>
<DxRibbonTab Text="Home">
<DxRibbonGroup Text="Insert">
<DxRibbonItem Text="Component"
IconUrl="images/icon.svg" />
</DxRibbonGroup>
</DxRibbonTab>
</DxRibbon>
![]()
See Also