"curveLineType"
    
    The attribute "curveLineType" sets the line type of a trend curve.
Synopsis
setValue(string shape, "curveLineType", string curve, string type);
getValue(string shape, "curveLineType", string curve, string
            &type);
shape.curveLineType(string curve, string type);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| curve | Name of curve | 
| type | Line type of a curve. You can find the needed line type using the function lineSelector(). | 
Description
The attribute "curveLineType"; sets the line type of a trend curve.
Example
You can find out the line type by using the function "lineSelector".
main()
{
  string lSel;
  lineSelector(lSel);
  DebugN("Type of the line",lSel);
}
            In the following example, the line type of a trend curve is set to "dashed,oneColor,JoinMiter,CapButt,3"
main()
{
  string kt = "[dashed,oneColor,JoinMiter,CapButt,3]";
  TREND1.curveLineType("Kurve",kt);
}
            
            Assignment
Trend