CoreClasses Xojo Plugin

ObjectArray.AddItems Method

Use this method to add multiple objects from any container that implements the IIterator interface.

AddItems(
   iter as IIterator)

Parameters

iter
The container to add from.

The objects from the container will be added from the current position of its iterator to the end of the iterator.

The supplied iterators position will be at the end once the AddItems method has been executed. So to use it again you will need to call MoveFirst on it.

Remarks

See Also

ObjectArray Class