Hi,
How can I get the objects that I have selected with doc.Objects.GetSelectedObjects(False, False)?
Because I’m not able to use this.
Dim SelectedObj = doc.Objects.GetSelectedObjects(False, False)
Also if I do SelectedObj(0). No further possibilities.
menno
(Menno Deij - van Rijswijk)
2
For Each obj as RhinoObject in SelectedObj
// do stuff
Next
SelectedObj is of type IEnumerable<RhinoObject>
, so you can iterate over its contents.
Ah like that
Thought it would be able to use it as a List type of thing 
Thanks