如何从poline读取图层?
e。用这个可以得到(8)LAYER_NAME"),但我想只看到LAYER_NAME因为我想稍后通过名称检查
(defun c:test ( / ent enx )
(if (setq ent (car (entsel)))
(progn
(setq enx (entget ent))
(assoc 8 enx)
)
)
)
修改行
(assoc 8 enx)
(cdr (assoc 8 enx))