Read access to the lower range limit of the Y component of a data object. Read/write access to the lower range limit of the Y component of the current formula or FlexPro data.
Syntax
DataObject.lower_range_limit_y
or
Data.lower_range_limit_y
or
this.lower_range_limit_y = LowerRangeLimit
or
Data.lower_range_limit_y = LowerRangeLimit
The syntax of the lower_range_limit_y 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. |
LowerRangeLimit |
The floating point value to be assigned as the lower range limit for the Y 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').lower_range_limit_y |
Returns the lower range limit of the Y component of a data set. |
this.lower_range_limit_y = -10 |
Sets the lower range limit of the Y component of the current formula to the value -10. |