明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1272|回复: 2

使用选择集删除数据之后的问题

[复制链接]
发表于 2004-9-9 11:46:00 | 显示全部楼层 |阅读模式
在vba中,当使用选择集选择所有对象,然后调用erase和delete方法,在保存文件,此时文件应该非常小(20多k),但实际上保存的文件和原始文件一样大小,我想应该是选择集的问题,但应该怎么办呢?请大侠帮忙.
 楼主| 发表于 2004-9-9 14:24:00 | 显示全部楼层
打开一个cad文件,重复执行下面代码,为什么c:\111.dwg文件会越来越大,应该怎么解决这个问题,使他不会增大,因为我想保证里面什么也没有,还有哪些对象,应该怎么删除。 Dim SelectAll As AcadSelectionSet
On Error GoTo Errorhandle
If ThisDrawing.SelectionSets.Count > 0 Then
For i = 0 To ThisDrawing.SelectionSets.Count - 1
If LCase(ThisDrawing.SelectionSets.Item(i).Name) = "selectall" Then
Set SelectAll = ThisDrawing.SelectionSets.Item(i)
SelectAll.Delete
End If
Next
End If

Set SelectAll = ThisDrawing.SelectionSets.Add("selectall")
SelectAll.Select AcSelect.acSelectionSetAll

If (SelectAll.Count > 0) Then
'MsgBox SelectAll.Item(0).ObjectName
SelectAll.Erase
End If
'SelectAll.Delete
ThisDrawing.SelectionSets.Item("selectall").Delete ThisDrawing.SaveAs "C:\113"
发表于 2004-9-9 15:00:00 | 显示全部楼层
For i = 0 To ThisDrawing.SelectionSets.Count - 1
If LCase(ThisDrawing.SelectionSets.Item(i).Name) = "selectall" Then
Set SelectAll = ThisDrawing.SelectionSets.Item(i)
SelectAll.Delete
End If
Next
在这个循环中,判断条件是选择集的个数,那么就不要再用ThisDrawing.SelectionSets.Item(i)了,把i改成0试试看。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-28 02:43 , Processed in 0.152359 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表