ObjectIterator
From Xojo Documentation
You are currently browsing the old Xojo documentation site. Please visit the new Xojo documentation site! |
Class (inherits from Object)
Used to iterate over the active objects at runtime. Use the Introspection system to get information on the active objects. Note that ObjectIterator is a Public class of the Runtime module.
Properties | |
|
Methods | ||
|
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
While o.MoveNext
ListBox1.AddRow(Introspection.GetType(o.Current).Name)
Wend
While o.MoveNext
ListBox1.AddRow(Introspection.GetType(o.Current).Name)
Wend
See Also
Introspection, Runtime modules; TypeInfo class.