"timeTrend"
    
    The attribute "timeTrend" checks whether a trend is a value over time trend.
Synopsis
getValue(string shape, "timeTrend", bool &type);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| type | 
                                 1 = The trend is a value over time trend. 0 = The trend is not a value over time trend.  | 
                        
Description
The attribute "timeTrend" checks whether a trend is a value over time trend.
Example
In the following example, the code returns 1 if the trend is a value-over-time trend. If the trend is not a value-over-value trend, 0 will be returned.
main()
{
  bool trV;
  getValue("TREND1","timeTrend",trV);
  DebugN("Time trend ",trV);
}
        Assignment
Trend
