Enables or disabled a curve object's annotation arrows.
Rhino.CurveArrows (strObject [, intStyle])
strObject |
Required. String. The object's identifier. |
||||||||||
intStyle |
Optional. Number. The style of annotation arrows to be displayed. The styles are as follows:
|
Number |
If intStyle is not specified, the current annotation arrow style if successful. |
Number |
If intStyle is specified, the previous annotation arrow style if successful. |
Null |
If not successful, or on error. |
Dim strObject, intStyle
strObject = Rhino.GetObject("Select a curve", 4)
If Rhino.CurveArrows(strObject) <> 3 Then
Rhino.CurveArrows strObject, 3
End If