OutputItemList Class (Python)

The OutputItemList class provides access to the list of items in an open output document. You obtain an OutputItemList object from the GetOutputItems method of an SpssOutputDoc object.

An OutputItemList object is not an iterable Python object. In order to iterate over the items in the list, use a for loop, as in:

for index in range(OutputItemList.Size()):

For an example that uses the OutputItemList class, see the example for the SpssOutputItem class.