Read access to the upper range limit of the X component of a data object. Read/write access to the lower range limit of the X-component of the current formula.
Syntax
[DataObject].LowerRangeLimitX
or
[this].LowerRangeLimitX = LowerRangeLimit
The syntax of the LowerRangeLimitX 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. |
LowerRangeLimit |
The floating point value to be assigned as the lower range limit for the X component. |
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 only use this option in embedded FPScript. For standard formula objects, you should edit the attribute on the General tab of the Properties dialog box instead.
Available In
FlexPro Basic, Professional, Developer Suite
Examples
\DataSet.LowerRangeLimitX |
Returns the lower range limit of a data set's X component. |
.LowerRangeLimitX = -10 |
Sets the lower range limit of the X-component of the current formula to the value -10. |