Message 1 of 3

Not applicable
07-18-2013
09:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to use the PickObjects method and judging by the lack of documentation and examples out there, it's not a good direction to go. But regardless, it returns an array of References. So now what? How can I cast that Reference something useful, like a Wall or Beam?
Dim pickedObjs As IList(Of Reference) = sel.PickObjects(ObjectType.Element, "Please select objects") For Each PO In pickedObjs Dim CurObj As Element = PO Next
Solved! Go to Solution.