OutputDocsList Class (Python)
The OutputDocsList
class provides
access to the list of open output documents. You obtain an OutputDocsList
object from the GetOutputDocuments method
of the SpssClient
class.
An OutputDocsList
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(OutputDocsList.Size()):
For an example that
uses the OutputDocsList
class,
see the examples for the SpssOutputDoc class.