wjzhang 发表于 2003-8-4 14:07:00

個位大侠qinchijiao 取得dxf組碼?

eeko 发表于 2003-8-5 14:31:00

如果是在用LISP,也许下面程序对你有用:
(defun c:printdxf()
(setq ent (entlast))
(setq entl (entget ent))
(setq ct 0)
(textpage)
(princ "\nentget of last entity:")
(repeat (length entl)
    (print (nth ct entl))
    (setq ct (1+ ct))
)
(princ)
)
页: [1]
查看完整版本: 個位大侠qinchijiao 取得dxf組碼?