AdvListBox Items background color

Good afternoon to all,
thare's a way to change the item bagkground color??

Thank you for attention

Best regards
Daniele

You want different background colors for different items?
If so, the only way at this moment is by custom drawing the items via assigning an event handler to:

advlistbox.ListBox.OnDrawItem()

and set

advlistbox.ListBox.Style := lbOwnerDrawFixed;

Thank you Bruno for reply.
In next version we can have a chance to see this feature??

Thank you again.

Best regards
Daniele

I further investigated and there is already a possible way you could do this.

This code for example, adds an item with a yellow background:

begin
  advlistbox1.Items.Add.Text := '<body bgcolor="yellow">Hello world</body>';
end;

Thank you Bruno ...