明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
12
返回列表 发新帖
楼主: yucc

删除很多同名块中的指定颜色和指定文字

[复制链接]
 楼主| 发表于 2016-1-29 13:52:39 | 显示全部楼层
mikewolf2k 发表于 2016-1-29 13:17
做个过滤器,遍历所有的块,然后在这个集合中的块元素去做上面那些事。不要用ThisDrawing.Blocks(Sube.Na ...

Dim ss As AcadSelectionSet
Dim i As AcadEntity
Set ss = ThisDrawing.ActiveSelectionSet
Dim ft(0) As Integer
Dim fd(0) As Variant
ft(0) = 62                 '组码
fd(0) = "5"                '颜色码
ss.Select acSelectionSetAll, , , ft, fd

    For Each i In ss
      If i.ObjectName = "AcDbline" Then
         i.Delete
      End If
    Next i
发表于 2016-1-29 15:24:27 | 显示全部楼层
yucc 发表于 2016-1-29 13:52
Dim ss As AcadSelectionSet
Dim i As AcadEntity
Set ss = ThisDrawing.ActiveSelectionSet

这样不可以吧?这样获得的是直接的line,你是要块中的,就得遍历块,然后遍历块中的子元素,符合要求再处理。
 楼主| 发表于 2016-1-29 16:15:26 | 显示全部楼层
mikewolf2k 发表于 2016-1-29 15:24
这样不可以吧?这样获得的是直接的line,你是要块中的,就得遍历块,然后遍历块中的子元素,符合要求再处 ...

实在搞不定了 太水
 楼主| 发表于 2016-1-29 20:09:29 | 显示全部楼层
mikewolf2k 发表于 2016-1-29 13:17
做个过滤器,遍历所有的块,然后在这个集合中的块元素去做上面那些事。不要用ThisDrawing.Blocks(Sube.Na ...

还请能帮个忙,解决一下
 楼主| 发表于 2016-1-29 20:20:54 | 显示全部楼层
mikewolf2k 发表于 2016-1-29 15:24
这样不可以吧?这样获得的是直接的line,你是要块中的,就得遍历块,然后遍历块中的子元素,符合要求再处 ...

Sub Ltoc(blk As AcadBlock)
Dim Sube As AcadEntity
For Each Sube In blk

    If Sube.ObjectName = "AcDbLine" Then
        Dim ss As AcadSelectionSet
            Set ss = ThisDrawing.ActiveSelectionSet
        Dim ft(0) As Integer
        Dim fd(0) As Variant
            ft(0) = 62                 '组码
            fd(0) = "5"                '颜色码
            ss.Select acSelectionSetAll, , , ft, fd
        For Each ss In Sube
                 ss.Delete
        Next

    End If
Next

End Sub
发表于 2016-1-29 20:54:39 | 显示全部楼层
如果是删除指定内容的文字,用acadtext的TextString 属性,如果是颜色,哪用到TrueColor属性,这个属性是AcadAcCmColor 对象,略麻烦,看你要用什么 ColorMethod指定颜色了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 09:46 , Processed in 0.167085 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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