明经CAD社区's Archiver
社区
›
AutoLISP/Visual LISP 编程技术
› "layout" 切换图面问题
masterlong
发表于 2018-6-28 23:01:21
SY参数未定义或者漏了双引号
namezg
发表于 2018-7-2 11:07:05
(setq LayoutName "布局1")
(setq BlockName "块1")
(setq InsertionPoint '(100.0 100.0 0.0))
(entmake
(list
'(0 . "INSERT")
(cons 410 LayoutName);布局名
(cons 2 BlockName);块名
(cons 10 InsertionPoint);插入点(在 OCS 中)
)
)
页:
1
[2]
查看完整版本:
"layout" 切换图面问题