Is there any method using which we can change (reduce) the font size or font itself for all the list items in a list box. For eg: CAknSingleNumberStyleListBox single line listbox.
Say2Paul, how did you get this to work... I get a compile error when I try to access iListBox->ItemDrawer() and it says that ItemDrawer() is undefined for a CAknSingleNumberStyleListBox object.
"If we knew what it was we were doing, it would not be called research, would it?" - Albert Einstein
Forum posts: 226
Correct me if i'm wrong....
Maybe you can try by creating your own custom list box....
Forum posts: 81
CColumnListBoxItemDrawer* drawer = iListBox->ItemDrawer();
drawer->ColumnData()->SetColumnFontL(0, iEikonEnv->LegendFont());
Forum posts: 45
"If we knew what it was we were doing, it would not be called research, would it?" - Albert Einstein
Forum posts: 40
Use iListBox->View()->ItemDrawer() Instead.