メッセージ1/10
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- パーマリンクを表示
- 印刷
- 報告
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
解決済! 解決策の投稿を見る。