For an instance list with fields containing long strings of data, wrap the strings, and increase the row height so that the entire string is visible:
If (#AVLISTMANAGER.avVisualList *IsNot *NULL)
Set Com(#AVLISTMANAGER.avVisualList) Rowsizing(Individual) Rowheight(0) Rowlines(True) Columnlines(True)
For Each(#Column) In(#AVLISTMANAGER.avVisualList.Columns)
If (#Column *Is #PRIM_LIST.String)
(#Column *As #PRIM_LIST.String).WordWrap := True
Endif
Endfor
Endif
See shipped examples DF_T72* (In the VLF-ONE shipped demo, Examples --> Advanced --> Control Instance List 2)