Word wrap in Listview

jdonth

Member
Licensed User
Longtime User
I have a two line listview and the text is being truncated rather than word wrapped. Is there a setting/tip/trick to getting the whole of the text to display?
 

Informatix

Expert
Licensed User
Longtime User
Contrary to the above discussion, I need a way to disable the wordwrap in a (one and/or two line) Listview. If a string is too long, it wordwraps. The result is ugly. I know a solution is to increase the row height, but I do not want that. Thanks in advance for any help.

PS
Who knows a way to change the background color of a Listview to something other than black?

1) Do a search for Ellipsize.

2) ListView.Color = ....
And usually, you set LV.ScrollingBackgroundColor = ... with the same color.
 
Upvote 0
Top