DxRibbonApplicationTab.IconUrl Property
Specifies the application tab icon’s URL.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(null)]
[Parameter]
public string IconUrl { get; set; }
Property Value
Type | Default | Description |
---|---|---|
String | null | The icon URL. |
Remarks
The following code snippet specifies an icon URL for the application tab:
<DxRibbon>
<DxRibbonApplicationTab IconUrl="/images/home.svg" />
<DxRibbonTab Text="Tab 1" />
<DxRibbonTab Text="Tab 2" />
<DxRibbonTab Text="Tab 3"/>
</DxRibbon>
See Also