szx025 发表于 2018-2-4 14:01:57

怎么让这个选中的文字变虚

(while(setq en (entsel "\n请选图名:"))
怎么让这个选中的文字变虚,这样可以方便看见有没有选中目标

Andyhon 发表于 2018-2-4 16:20:28

(redraw ])

mode

An integer value that controls the visibility and highlighting of the entity. The mode can be one of the following values:

1 Show entity
2 Hide entity (blank it out)
3 Highlight entity
4 Unhighlight entity

The use of entity highlighting (mode 3) must be balanced with entity unhighlighting (mode 4).

xyp1964 发表于 2018-2-4 22:54:34

(while (setq s1 (car (entsel "\n请选图名: ")))
(redraw s1 3)
)

szx025 发表于 2018-2-5 09:29:11

谢谢二位高手
页: [1]
查看完整版本: 怎么让这个选中的文字变虚