itemContent
Type
property
Summary
Gets and sets the value of the content of an item in list.
Syntax
set the itemContent of widget to <Array>
get the itemContent of widget
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.
Examples
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