明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 3039|回复: 10

图层归正的程序

[复制链接]
发表于 2011-3-31 19:19:28 | 显示全部楼层 |阅读模式
不知道有没有那种能把已经在图上的标注归到DIM层,文字归到TEXT层,填充归到HAT层的程序,呵呵,希望能自己修改快捷键,贱人工具箱里面有这个但是不想安装整个工具箱,和其他的有冲突!求助
发表于 2011-3-31 19:33:30 | 显示全部楼层
本帖最后由 Gu_xl 于 2011-3-31 19:34 编辑

回复 xyz2009xyz 的帖子

  1. (defun c:tt()
  2.   (setq ss (ssget "x" '((0 . "*DIMENSION"))))
  3.   (if ss
  4.     (progn
  5.       (if (not (tblsearch "layer" "dim"))
  6.         (command "layer" "m" "dim" "")
  7.         )
  8.       (command "chprop" ss "" "la" "dim" "")
  9.       )
  10.     )
  11.   (setq ss (ssget "x" '((0 . "hatch"))))
  12.   (if ss
  13.     (progn
  14.       (if (not (tblsearch "layer" "hat"))
  15.         (command "layer" "m" "hat" "")
  16.         )
  17.       (command "chprop" ss "" "la" "hat" "")
  18.       )
  19.     )
  20.   )
 楼主| 发表于 2011-3-31 19:41:04 | 显示全部楼层
3Q楼主,不知道能不能再帮个忙,把所有图关闭,只保留当前图层的程序,
发表于 2011-3-31 19:41:54 | 显示全部楼层
Gu_xl 真历害,学习了
 楼主| 发表于 2011-3-31 19:43:17 | 显示全部楼层
几分钟哦,呵呵,就搞定了!
发表于 2011-3-31 19:52:28 | 显示全部楼层
回复 xyz2009xyz 的帖子

(command "layer" "off" (strcat "~" (getvar "clayer")) "")
发表于 2015-7-15 11:17:03 | 显示全部楼层
版主的程序好简洁,学习了
发表于 2015-8-14 15:01:11 | 显示全部楼层
Gu_xl 发表于 2011-3-31 19:33
回复 xyz2009xyz 的帖子

学习+佩服+赞一个
发表于 2017-8-30 16:17:02 | 显示全部楼层
Gu_xl 真历害,学习!!!!!!!
发表于 2017-8-31 08:58:50 | 显示全部楼层
Gu_xl 发表于 2011-3-31 19:33
回复 xyz2009xyz 的帖子

版主大神,能帮忙解决下这个问题嘛 555
http://bbs.mjtd.com/thread-175323-1-1.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-17 03:37 , Processed in 0.193458 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表