明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2253|回复: 5

删除一个图层上的所有实体,用什么办法比较好呢?

[复制链接]
发表于 2003-7-3 20:10:00 | 显示全部楼层 |阅读模式
我目前用的方法是
for i=0 to mospace.count-1 step 1

if mospace.item(i).layer="kk" then
set entry=mospace.item(i)
entry.delete
end if
next

但如果mospace中实体数量很大的时候就很慢了,请问有没有更好的办法呢?
发表于 2003-7-3 22:51:00 | 显示全部楼层
用选择集的方法比较好
发表于 2003-7-7 11:47:00 | 显示全部楼层
如何使用选择集?
发表于 2003-7-7 12:24:00 | 显示全部楼层
  1. Sub DelLayEnt()
  2.     Dim LayerName As String
  3.     LayerName = "0"  '这里保存着要删除的图层名称
  4.     Dim ss As AcadSelectionSet
  5.     Set ss = CreateSelectionSet()
  6.     Dim fType As Variant
  7.     Dim fDate As Variant
  8.     BuildFilter fType, fData, 8, LayerName
  9.     ss.Select acSelectionSetAll, , , fType, fData
  10.     Dim Ent As AcadEntity
  11.     For Each Ent In ss
  12.         Ent.Delete
  13.     Next
  14.     Update
  15.     Debug.Print "所有在图层" & LayerName & "上的对象都已经被删除了。"
  16. End Sub

  17. Public Sub BuildFilter(typeArray, dataArray, ParamArray gCodes())
  18.     Dim fType() As Integer, fData()
  19.     Dim index As Long, i As Long
  20.    
  21.     index = LBound(gCodes) - 1
  22.         
  23.     For i = LBound(gCodes) To UBound(gCodes) Step 2
  24.         index = index + 1
  25.         ReDim Preserve fType(0 To index)
  26.         ReDim Preserve fData(0 To index)
  27.         fType(index) = CInt(gCodes(i))
  28.         fData(index) = gCodes(i + 1)
  29.     Next
  30.     typeArray = fType: dataArray = fData
  31. End Sub

  32. Public Function CreateSelectionSet(Optional ssName As String = "ss") As AcadSelectionSet

  33.     Dim ss As AcadSelectionSet
  34.    
  35.     On Error Resume Next
  36.     Set ss = ThisDrawing.SelectionSets(ssName)
  37.     If Err Then Set ss = ThisDrawing.SelectionSets.Add(ssName)
  38.     ss.Clear
  39.     Set CreateSelectionSet = ss
  40. End Function

发表于 2012-4-1 09:05:21 | 显示全部楼层
谢谢mccad,代码非常好用
发表于 2012-9-7 10:13:15 | 显示全部楼层
这个是什么语言的代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 15:32 , Processed in 0.145643 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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