Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have really simple document. There is only 1116 circles on one layer.
I want to transfer radius of each circle and wrote really simple VBA code:
Sub radiusOfCircles()
Dim ent As AcadEntity
For Each ent In ThisDrawing.ModelSpace
If TypeOf ent Is AcadCircle Then
Debug.Print ent.Radius
End If
Next
End SubI wanted do copy from debug window. If I run it, I get only 199 objects. I have no idea why.
Solved! Go to Solution.