*ActionType()

Indicates the type of curve edit.

Syntax

*ActionType (0/1/2/3/4/5)

Application

HyperGraph

Inputs

0/1/2/3/4/5
Indicates the type of curve edit:
0
Delete/Shift
1
Trim
2
Hide
3
Bridge
4
Replace
5
Delete

Context

*BeginCurveEdit()

Example

*BeginCurveEdit(h, "HORIZ_CUT3.41-5.94")
   *RangeFrom("3.41")
   *RangeTo("5.94")
   *InterpolateFlag(0)
   *ActionType(0)
*EndCurveEdit()
*BeginCurveEdit(h, "HORIZ_EXPR2.5-3.5")
   *RangeFrom("2.5")
   *RangeTo("3.5")
   *InterpolateFlag(0)
   *ActionType(4)
   *Expression("cos(x)")
*EndCurveEdit()