Uniface Underground -> Undocumented.Features.Only. |
Name | valuepart |
Synopsis | valuepart(item) |
Use | Allowed in form, service, and report components. |
Description | valuepart returns the value
of a list item. All list can be
processed as indexed and associative. If you get a item from an associated
list but using an index you can obtain the value using this function
Tested in 7.2.03 |
Example | mylist = "A=hello;B=world;C=uuu"
getitem myitem, mylist,1 ; Read the first item of list (mylist is : "A=hello" mykey = valuepart(myitem) ; mykey is : "hello" |