Prompts the user to pick, or select, a single curve object.
Rhino.GetCurveObject ([strMessage [, blnPreSelect [, blnSelect ]]])
strMessage |
Optional. String. A prompt or message. |
blnPreSelect |
Optional. Boolean. Allow for the selection of pre-selected objects. If omitted, pre-selected objects are not accepted (False). |
blnSelect |
Optional. Boolean. Select the picked objects. If omitted, the objects that are picked are not selected (False). |
Array |
An array of selection information if successful. The array will contain the following information:
|
||||||||||||||
Null |
If not successful, or on error. |
Dim arrSelect
arrSelect = Rhino.GetCurveObject("Select curve")
If IsArray(arrSelect) Then
Rhino.Print "Curve identifier: " & arrSelect(0)
End If