03-30-2020
05:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-30-2020
05:34 AM
So...do you still need help?
If you need to make a manual (by mouse click) selection to go with your iLogic code, there are a couple popular options.
You can use oDoc.SelectSet
at the beginning of your code.
That captures your existing selection, from before you started the code, into an ObjectCollection.
You can also use the following line, but just change the selection filter and object type to suit your needs:
Dim oObj As Object = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kAllEntities,"Select an Entity")
Wesley Crihfield
(Not an Autodesk Employee)