DataDocsList Class (Python)
The DataDocsList
class provides
access to the list of open datasets. You obtain a DataDocsList
object from the GetDataDocuments method of the SpssClient
class.
A DataDocsList
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(DataDocsList.Size()):
For an example that uses the DataDocsList
class, see the examples for the SpssDataDoc class.