TAdvSmoothListBox

Hi All,

How can I change the font size of the selected item in a TAdvSmoohtListBox ? I've  found the default one, but not the one when I click on the Item .

Default one ; 
   MyAdvSmoothListBox.DefaultItem.Height:=60;
   MyAdvSmoothListBox.DefaultItem.CaptionFont.Color := clWhite;
   MyAdvSmoothListBox.DefaultItem.CaptionFont.Size  := 20;
   MyAdvSmoothListBox.DefaultItem.CaptionFont.Style  := [fsBold];

Thanks 
Patrick

In selected state,
the item uses the CaptionSelectedFont.

Woking

Thanks Nancy,

*Working