Read access to the name of the data object assigned as the Z component of a data object. Read/write access to the name of the data object assigned as the Z component of the current formula or FlexPro data.
Syntax
DataObject.assigned_z
or
Data.assigned_z
or
this.assigned_z = Path
or
Data.assigned_z = Path
The syntax of the assigned_z property consists of the following elements:
Element |
Description |
---|---|
DataObject |
The data object being accessed. Use this to access the current formula. |
Data |
A flexpro.Data object to which header information of the data object from which it originates is assigned. |
Path |
String with the path name of the linked data object. |
Remarks
Write access to the header information of a data object is only permitted for the formula in which the Python code is located. You should preferably edit the attribute on the General tab of the Properties dialog box.
Available In
FlexPro Professional, Developer Suite
Examples
flexpro.object(this.assigned_z).data |
Reads the data of the data set that is assigned to the current formula as a Z data set. |
this.assigned_z = "Frequency" |
Assigns the"Frequency" data set to the formula. |