[LISP程序]:关闭天正门窗编号
(defun c:smch( / dxf i ss)(defun @subst@ (el tylst / c)
(foreach n tylst
(if (setq c (assoc (car n) el))
(setq el (subst n c el))
(setq el (append el (list n)))
)
)
(entmod el)
)
(setq ss (ssget '((0 . "TCH_OPENING")(8 . "WINDOW"))))
(setq i -1)
(repeat (sslength ss)
(setq dxf (entget (ssname ss (setq i (1+ i)))))
(@subst@ dxf (list '(302 . "")))
)
(princ)
) 关闭门窗编号的图层其实也就可以了。 去除-CAD教育版戳记的软件 谢谢分享了。。 其实关闭图层就可以了 用组码操作天正门窗容易引起程序崩溃的,不知道这个程序是否正常,尝试一下 这个程序也是会引起程序崩溃的,请高手们指点一下,改如何通过组码修改天正门窗的属性{:1_23:}
页:
[1]