gotop 发表于 2007-6-1 21:20:00

请问vba中如何删除已绘制好的所图案

请问vba中如何删除已绘制好的所图案

sealive 发表于 2007-6-2 08:55:00

<p>用图元遍历试试</p>

gotop 发表于 2007-6-2 11:57:00

sealive发表于2007-6-2 8:55:00static/image/common/back.gif用图元遍历试试

<p>多谢提示~~~</p><p>我编出来了:</p><p>Public Function delete()<br/>&nbsp;Dim entry As AcadEntity<br/>&nbsp;For Each entry In ThisDrawing.ModelSpace '在现有的线型中进行循环<br/>&nbsp;&nbsp;&nbsp; entry.delete<br/>&nbsp;&nbsp;&nbsp; Next entry '结束循环<br/>End Function</p>
页: [1]
查看完整版本: 请问vba中如何删除已绘制好的所图案