Returns the identifiers of all objects based on the objects' user-assigned URL.
Rhino.ObjectsByURL (strURL [, blnSelect [, blnIncludeLights]])
strURL |
Required. String. The URL of an object or objects. |
blnSelect |
Optional. Boolean. Select the objects. If omitted, the objects are not selected (False). |
blnIncludeLights |
Optional. Boolean. Include light objects. If omitted, light objects are not returned (False). |
Array |
An array of strings identifying the objects if successful. |
Null |
If not successful, or on error. |
Dim arrObjects, strURL
strURL = Rhino.GetString("URL to select")
If Not IsNull(strURL) Then
arrObjects = Rhino.ObjectsByURL(strURL, True)
End If