Message 1 of 10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi
The aim is to reinsert dynamic block to the same insertion point
I'm trying to code but insertion point issue doesn't work
(defun c:DBRI (/ b obj bn ip)
(vl-load-com)
(setq
b (entsel "\nSelect block: ")
obj (vlax-ename->vla-object (car b))
bn (vla-get-effectivename obj)
ip (vla-get-InsertionPoint obj)
)
(Command "-INSERT" bn ip "" "" "")
(vla-delete obj)
(princ)
)
Could you pls help to finalize it
Thanks in advance!
K
Solved! Go to Solution.