Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi
I need a list of ssname of all design blocks including nested. To check the list after separate XDATA condidos in blocks. Thanks.
(while ent (setq elst (entget ent))
(if (= (cdr (assoc 0 elst)) "INSERT")
(progn
(princ ent)
(verifyxdata); routine that checks for xdata
)
(princ "******************")
)
(setq ent (entnext ent))
)
Please mark this as the solution if it resolves your issue.Kudos gladly accepted.
Regis Rohde
Regis Rohde
Solved! Go to Solution.