看那个!。。。
我发现了一个关于2010年普林问题的问题,在这个链接上:
http://www.theswamp.org/index.php?topic=29893.0(AutoCAD 2010多段线问题快速修复提醒)
- ;Acad2010doc.lsp
- ;===============================================================================
- ; Turn off command line responses
- (setvar "CMDECHO" 0)
- ;===============================================================================
- (command "convert" "Polyline" "All")
- (prompt"\n Converted polylines to fix 2010 formatting.....\n")
- ;===============================================================================
- ; Turn on command line responses
- (setvar "CMDECHO" 1)
- ;===============================================================================
此命令转换无效。。。
寻找它时,我注意到,使用properties命令,它向我显示,正如我所期望的那样,多段线是一条“多段线”,但是,当我看到properties使用list命令时,它是一条LWPOLYLINE。。。 |