"curveGridRefValueX"
    
    The attribute "curveGridRefValueX" sets the reference value (for XY trend curves of the X part) for the grid lines.
Synopsis
setValue(string shape, "curveGridRefValueX", string curve, float
                distance);
getValue(string shape, "curveGridRefValueX", string curve, float
                distance);
shape.curveGridRefValueX(string curve, float distance);
Parameter
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| curve | The curve | 
| distance | The position for the reference grid line | 
Description
The attribute "curveGridRefValueX" sets the reference value (for XY trend curves of the X part) for the grid lines.
Example
The following example draws the reference grid line at position 60.5
main()
{
  float retDis;
  TREND1.curveGridRefValueX("Curve",60.5);
  getValue("TREND1","curveGridRefValueX","Curve", retDis);
}
        Assignment
Trend
