怎么把一个图层里面的所有东西都移动到指定的图层呢?
本帖最后由 bingshuier 于 2014-7-20 11:44 编辑(defun c:lpjzh() ;lpjzh=梁配筋转换
(setq hcl-lpj-h (ssget "x" (list (cons 8 "0"))));hcl-lpj-h=后处理-梁配筋-水平
(command "chprop" hcl-lpj-h "" "la" 0_MV "" "")
(princ)
)
写到这里就写不下去了? search CHPROP... (defun c:lpjzh () ;lpjzh=梁配筋转换
(setq hcl-lpj-h (ssget "x" (list (cons 8 "0")))
0_MV "图层2"
) ;hcl-lpj-h=后处理-梁配筋-水平
(command "chprop" hcl-lpj-h "" "la" 0_MV "")
(princ)
)
页:
[1]