Read access to the comments on the data object's Z component. Read/write access to the comments of the Z component of the current formula or FlexPro data.
Syntax
DataObject.comments_z
or
Data.comments_z
or
this.comments_z = Comments
or
Data.comments_z = Comments
The syntax of the comments_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. |
Comments |
The string to be assigned as the comments for the Z component. |
Remarks
Write access to the header information of a data object is only permitted for the formula in which the Python code is located. Instead of using write access, you should preferably edit the attribute on the General tab of the Properties dialog box.
Available In
FlexPro Professional, Developer Suite
Examples
flexpro.object(r’\DataSet').comments_z |
Returns a string with the comments on a data set's Z component in the root folder. |
this.comments_z = "Frequency" |
Sets the comments on the actual formula's Z component to "Frequency". |