SpssDataUI Class (Python)
The SpssDataUI class represents
the Data Editor window associated with an open dataset. You obtain
an SpssDataUI object from the GetDataUI method of an SpssDataDoc object.
Example: Get the SpssDataUI Object Associated with the Active Dataset
import SpssClient
SpssClient.StartClient()
ActiveDataDoc = SpssClient.GetActiveDataDoc()
DataUI = ActiveDataDoc.GetDataUI()
- The variable DataUI is an
SpssDataUIobject for the Data Editor window associated with the active dataset.