Read access to the name of the data object assigned as the Z component. Read/write access to the name of the data object assigned as the Z component of the current formula.
Syntax
[DataObject].AssignedZ
or
[this].AssignedZ = Path
The syntax of the AssignedZ property consists of the following elements:
Element |
Description |
---|---|
DataObject |
Optional. The data object being accessed. If you omit this element, then the current formula is accessed. In the case of embedded FPScript you have to use the This keyword. |
Path |
String with the path name of the linked data object. |
Remarks
Write access to the header information of a data object is only allowed for the formula where the FPScript code is located. You should preferably edit the attribute on the General tab of the Properties dialog box.
Available In
FlexPro Basic, Professional, Developer Suite
Examples
$.AssignedZ$[-1n] |
Accesses the last value of the data set which is assigned to the actual formula as a Z data set. |
.AssignedZ = "Frequency" |
Assigns the ”Frequency" data set to the formula. |