to iterate through lists or maps, we do
Code: Select all
ForEach MyList()
;here you must access the item with prefix MyList()
Next
Code: Select all
ForEach i In MyList()
;from here you can access the list item just with the prefix i
Next
Code: Select all
*i.MyStructure = MyList()
Best regards
Uwe