Message 1 of 12
How to "select" an selection set
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a AutoCAD drawing which consists a lot of block references with attributes. what I want to do is to be able to select some of the blocks by certain rules, then select them, and user can decide what attributes they want to change. I have some code to scan the entire drawing and create a selection set to put all the qualified block references in, the problem is I cannot "Visually" select them so that I can modify the attributes on AutoCAD properties window.
The problem: How to select all entities in a selectionset. I try to use the following method, but it seems that it only select all objects in modelspace.
'ss is the selection set created. 'msgbox ss.count 'there are correct number of elements in the selection set. ss.Select acSelectionSetAll ss.Delete ThisDrawing.SendCommand "Select p " & vbCrLf