How can I help you?
How to display BannerIcon in banner of HubTile?
4 Feb 20251 minute to read
You can achieve this by using HubTileShowBannerTileIcon and BannerIcon property.
Property table
| Property | Description |
|---|---|
| ShowBannerIcon | This property decides whether BannerIcon is displayed in DefaultTile type of HubTile or not. |
| BannerIcon | This property sets BannerIcon in DefaultTile Banner of HubTile. |
/// Sets whether BannerIcon needs to be displayed in BannerTile
this.HubTile1.ShowBannerIcon = true;
/// Sets BannerIcon in BannerTile type of HubTile.
this.HubTile1.BannerIcon = this.ImageListAdv.Images[0];‘Sets whether BannerIcon needs to be displayed in BannerTile
Me.HubTile1.ShowBannerIcon = True
‘Sets BannerIcon in BannerTile type of HubTile.
Me.HubTile1.BannerIcon = Me.ImageListAdv.Images[0]