itemContent

Typeproperty
Dictionarywidget.polylist
LibraryPolyList
Syntax
set the itemContent of widget to <Array>
get the itemContent of widget
Associationscom.livecode.widget.polylist
Summary

Gets and sets the value of the content of an item in list.

Example
on mouseUp pButtonNumber
   local tItemContent

   set the itemPointer of widget"PolyList" to 1
   put the itemContent of widget"PolyList" into tItemContent
   put "ok" into tItemContent["icon"]
   set the itemContent of widget"PolyList" to tItemContent
end mouseUp
Description

Use the itemContent property to get and set the content value of a list item. You must use the itemPointer property to indicate which item you want to get the data from.