User will select object and its GUID adds to list.
But problem is in following. I would like to do highlighting objects in Rhino, when user select GUID in list.
“highlighting” means make object selected or smth like that.
You need to make a public variable inside your dialog. In your rhinocommand you can set that variable = doc. because if you use Dim doc as rhinodoc it does not know which document is doc.
After this you can
dosomething like this:
Dim l as new list(of guid)
For each a in listbox.selecteditems()
l.add(a)
Next
Hi, I had a similar question, is there a general way to select an object that you’ve just added to the document using the variable name of the object? (in rhinocommon)
or is the best solution to first add it to an array, and then select that array?