"currentCurve"
    
    The attribute "currentCurve" returns the part of the trend you right-clicked on.
Synopsis
 getValue(string shape, "currentCurve", string &curve);
Parameter
| Parameter | Description | 
|---|---|
| shape | Object name | 
| curve | The part of the trend (curve) you right-clicked on | 
Description
The attribute "currentCurve" returns the part of the trend (curve) you right-clicked on.
This attribute works only in the trend area and not in the scale area or in the legend area.
Example
The following example returns the curve you right-clicked on.
main()
{
  string rVAL;
  string obj = "TREND1";
  getValue(obj, "currentCurve", rVAL);
  DebugN(rVAL);
}
        Assignment
Trend