I'm trying to get my text string word wrapped.. but I'm not having any luck .. any one that have mastered this?
LAYOUT_AddChild, GUIObjects[ GID_Status ] = IIntuition->NewObject( ListBrowserClass, NULL,
LISTBROWSER_ColumnInfo, & StatusColumnInfo,
LISTBROWSER_Labels, & StatusList,
LISTBROWSER_Striping, LBS_ROWS,
LISTBROWSER_AutoFit, TRUE,
LISTBROWSER_WrapText, TRUE,
End,
n = IListBrowser->AllocListBrowserNode( 3,
LBNA_Column, 0,
LBNCA_Text, msg->cl_Time,
LBNA_Column, 1,
LBNCA_Text, str,
LBNA_Column, 2,
LBNCA_Text, msg->cl_String,
LBNCA_WordWrap, TRUE,
TAG_END
);