SpssSyntaxUI Class (Python)
The SpssSyntaxUI
class represents
the Syntax Editor window associated with an open syntax document.
You obtain an SpssSyntaxUI
object
from the GetSyntaxUI method
of an SpssSyntaxDoc
object.
Example: Get the SpssSyntaxUI Object Associated with the Designated Syntax Document
import SpssClient
SpssClient.StartClient()
DesignatedSyntaxDoc = SpssClient.GetDesignatedSyntaxDoc()
SyntaxUI = DesignatedSyntaxDoc.GetSyntaxUI()
- The variable SyntaxUI is an
SpssSyntaxUI
object for the Syntax Editor window associated with the designated syntax document.