"curveRemoveInterval"
Removes the specified interval of a trend curve.
Synopsis
setValue(string shape, "curveRemoveInterval", string curve, time start, time
stop);
shape.curveRemoveInterval(string curve, time start, time stop);
Parameters
| Parameter | Description |
|---|---|
| shape | Name of the object |
| curve | Name of curve whose interval should be deleted |
| start | Start time |
| stop | End time |
Description
Removes the specified interval of a trend curve.
Example
The following example removes the interval 17:01 - 17:03 of "curve1".
main()
{
time start = makeTime(2007,2,07,17,01);
time stop = makeTime(2007,2,07,17,03);
TREND1.curveRemoveInterval("curve1",start, stop);
}
Assignment
Trend