CListCtrl and wordwrap
C / C++ / MFC
2
Posts
2
Posters
1
Views
1
Watching
-
is there a wordwrap feature in CListCtrl, so when your data gets longer than the available width, it would break and add a new line?
Word wrap depends upon the view. In icon view, text wraps it it's too long, unless you've set the
LVS_NOLABELWRAP
style. The other views don't wrap text at all. If you need text wrapping (for example, in report view), you woudl have to use custom draw. Gary R. Wheeler