无goin访问对象
嗨,朋友们,如何在不将每个选项卡设置为当前的情况下分解所有空间(布局)中的所有块(我的意思是发出(setvar'Ctab…)
提前感谢 我的方法也是。。。。它工作得很好。。
使用ssget“_x”,您可以选择模型和所有布局中的所有对象。。。。。
(defun c:TesT (/ ss i) (vl-load-com)
;;;=== Tharwat 24. Sep. 2011 ===;;;
(if (setq ss (ssget "_x" '((0 . "INSERT"))))
(repeat
(setq i (sslength ss))
(vla-explode(vlax-ename->vla-object (ssname ss (setq i (1- i)))))
)
(princ)
)
(princ)
)
塔瓦特 塔尔瓦特,
你的帮助太好了。非常感谢你。
不客气Mehrdad。
我很高兴能帮助像你这样有经验的人。
当做
我从你和其他球童导师那里学到了很多东西
页:
[1]