Method
Sets the iterator back to its initial state so that a call to MoveNext will go to the first item in the list.
Example
The following example iterates over the objects using a While loop and writes each object's name to a ListBox.
Var o As Runtime.ObjectIterator = Runtime.IterateObjects
o.Reset
While o.MoveNext
ListBox1.AddRow(Introspection.GetType(o.Current).Name)
Wend