只需一步,快速开始
我想把CAD图中的多种文字样式全部用一种新的文字样式替换,在lisp下如何编程实现?
请各位大哥帮忙!!!
使用道具 举报
简单的小程序,试一下吧
(defun c:cc(/) (setq b1 (getstring "请输入文字样式:")) (setq d2 (cons 7 b1)) (setq ss (ssget "x" (list (cons 0 "TEXT")))) (setq n (sslength ss)) (setq index 0) (repeat n (setq b1 (entget (ssname ss index))) (setq d1 (assoc 7 b1)) (setq b3 (subst d2 d1 b1)) (entmod b3) (setq index (+ index 1)) )
(princ))
谢谢!!!
经常汇总来自各厂家的图纸,为字体都快烦死了!
这个程序太强了!
本版积分规则 发表回复 回帖后跳转到最后一页
小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 ) ©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途
GMT+8, 2024-11-26 00:49 , Processed in 0.182723 second(s), 24 queries , Gzip On.
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.