Font Style in CListCtrl
C / C++ / MFC
3
Posts
2
Posters
1
Views
1
Watching
-
Hi All, there's anybody who knows if there is a way to set the font style (size, stuff like that) in a CListCtrl item? :confused: Thanks a lot! cheers! :)
Use .SetFont() on the control. It is going to want a CFont, you can call CFont's CreatePointFont(), or if your feeling picky call CreateFont() with 14 arguments of font flexibility.
-
Use .SetFont() on the control. It is going to want a CFont, you can call CFont's CreatePointFont(), or if your feeling picky call CreateFont() with 14 arguments of font flexibility.