Objects(index:Int):Reference
Access objects in the reference list. The index starts at 0.
Given a reference list RL, you can use
ForEach RL->Objects Do ...
to iterate the references in the reference list, or
n := Dim(RL->Objects) For i:=0 To n-1 Do ...
to explicitly access the number of references on the list and iterate them.
See also: Reference List Operations