ResponsiveList v BitmapContaner

When adding an item I can set its BitmapName. How do I then use that in anyway?

Sorry, my wording was incorrect. I cannot set a BitmapName so how do I use the items in the BitmapContainer?

I have found that in the OnAfterDrawItemEvent that I can do the following:

  AGraphics.DrawBitmap(ARect.Left+3,ARect.Top+3,ARect.Right-3,ARect.Bottom-3,Bitmaps.FindBitmap('Note'),False,True);

Will this continue to be supported?

You can either use the BitmapContainer as you did or you can include a bitmap name reference in any HTML text that you draw, i.e. <p>sample text with <img src="bmpname"></p>

Thanks Bruno