明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1491|回复: 2

例如选择扩展属性为212100的多段线,可以不虑遍选择集吗?

[复制链接]
发表于 2014-6-4 18:55:37 | 显示全部楼层 |阅读模式
本帖最后由 yswoyh 于 2014-6-4 18:58 编辑

例如选择扩展属性为212100的多段线,可以不循环虑遍选择集吗?
能不能在选择之前过滤掉不需要的编码线
选择两种扩展编码实体线型,如何做。
多谢各位老师

发表于 2014-6-5 13:56:49 | 显示全部楼层
可以,使用选择集。
下例过滤包含由“MY_APP”应用程序添加的扩展数据的圆:

Sub Ch4_FilterXdata()
   Dim sstext As AcadSelectionSet
   Dim mode As Integer
   Dim pointsArray(0 To 11) As Double
   mode = acSelectionSetWindowPolygon
   pointsArray(0) = -12#: pointsArray(1) = -7#: pointsArray(2) = 0
   pointsArray(3) = -12#: pointsArray(4) = 10#: pointsArray(5) = 0
   pointsArray(6) = 10#: pointsArray(7) = 10#: pointsArray(8) = 0
   pointsArray(9) = 10#: pointsArray(10) = -7#: pointsArray(11) = 0
   Dim FilterType(1) As Integer
   Dim FilterData(1) As Variant
   Set sstext = ThisDrawing.SelectionSets.Add("SS9")
   
   FilterType(0) = 0
   FilterData(0) = "Circle"
   FilterType(1) = 1001
   FilterData(1) = "MY_APP"
   
   sstext.SelectByPolygon mode, pointsArray, FilterType, FilterData
   
End Sub
 楼主| 发表于 2014-6-5 16:43:30 | 显示全部楼层
多谢!多谢!我实验一下,不懂得地方请多多指教。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 12:27 , Processed in 0.344199 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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