Creating Display Items
Syntax:
$tlist insert index -itemtype type -style style -option value ...
Example:
tixScrolledTList .t -scrollbar auto -options {
tlist.orientation vertical
}
set tlist [.t subwidget tlist]
foreach name {ioi jay keith lars} {
$tlist insert end -itemtype imagetext -image $folder
-text $name
}