"timeInterval"
Time interval to be displayed in the trend.
Synopsis
setValue(string shape, "timeInterval", time Interval);
shape.timeInterval(time Interval);
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
Interval | Interval time |
Description
Time interval to be shown in the trend display. Used in connection with the "timeBegin" command.
Example
main()
{
time starttime;
time endtime;
starttime = makeTime(2007, 1, 20, 9, 30);
endtime = makeTime(2007, 1, 20, 10);
setValue("trend1", "timeInterval", endtime-starttime);
setValue("trend1", "timeBegin", starttime);
}
Assignment
Trend