正在加载...
0人已收藏
1人已打赏
0人已点赞
分享
全部回复(4 )
主题
回复
粉丝
CAD下载及教程
52.08 万条内容 · 666 人订阅
阅读下一篇
我的电脑一下子全算不了了,申请号是:HFWJ 6P93 EZ97 3XZJ EL1C 1NTN J9P8请哪位老兄帮算下注册号.谢谢!
遇到了一点小问题
内容不能包含下列词语
回帖成功
经验值 +10
全部回复(4 )
只看楼主 我来说两句回复 举报
修改块参照可以用块编辑(bedit)或在位编辑块(refedit)。
如果块定义数目不多,一个个改也不太麻烦。
以下自定义命令可以每次修改一个块定义。
先选择一个要修改的块参照,再输入命令。
;修改块颜色为红色
(defun c:b1()
(command "bedit" "chprop" (ssget "X") "" "C" "1" "" "bsave" "bclose")
)
;修改块颜色为黄色
(defun c:b2()
(command "bedit" "chprop" (ssget "X") "" "C" "2" "" "bsave" "bclose")
)
;修改块颜色为绿色
(defun c:b3()
(command "bedit" "chprop" (ssget "X") "" "C" "3" "" "bsave" "bclose")
)
;修改块颜色为青色
(defun c:b4()
(command "bedit" "chprop" (ssget "X") "" "C" "4" "" "bsave" "bclose")
)
;修改块颜色为蓝色
(defun c:b5()
(command "bedit" "chprop" (ssget "X") "" "C" "5" "" "bsave" "bclose")
)
;修改块颜色为洋红色
(defun c:b6()
(command "bedit" "chprop" (ssget "X") "" "C" "6" "" "bsave" "bclose")
)
;修改块颜色为白色
(defun c:b7()
(command "bedit" "chprop" (ssget "X") "" "C" "7" "" "bsave" "bclose")
)
回复 举报