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