明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1360|回复: 1

求助一个关于选择集的问题

[复制链接]
发表于 2006-11-29 15:31:00 | 显示全部楼层 |阅读模式

求助一个关于选择集的问题,有一张CAD画的表格,想提取里面的数据,如图

行与行之间是等距的,相差14.25,该文字在行之间,并未超过,参照帮助编了一个读取的程序,不知为何,老是不能正常读出来,有的读不出来,能读的,但是数值不对!请问给为高手可能的问题出现在什么地方:

Sub SelectTEXT()

    Dim i%

    Dim entity As AcadEntity

    Dim ssetObj As AcadSelectionSet

    For i = 1 To 32

    Set ssetObj = ThisDrawing.SelectionSets.Add("SS1")

    

    Dim mode As Integer

    Dim pointsArray(0 To 11) As Double

    Dim FilterType(3) As Integer

    Dim FilterData(3) As Variant

    mode = acSelectionSetFence

    pointsArray(0) = 1852.7125: pointsArray(1) = -90.3167 - 14.25 * (i - 1): pointsArray(2) = 0

    pointsArray(3) = 1926.9625: pointsArray(4) = -90.3167 - 14.25 * i: pointsArray(5) = 0

    pointsArray(6) = 1852.7125: pointsArray(7) = -90.3167 - 14.25 * i: pointsArray(8) = 0

    pointsArray(9) = 1926.9625: pointsArray(10) = -90.3167 - 14.25 * (i - 1): pointsArray(11) = 0

    FilterType(0) = -4

    FilterData(0) = "<or"

    FilterType(1) = 0

    FilterData(1) = "TEXT"

    FilterType(2) = 0

    FilterData(2) = "MTEXT"

    FilterType(3) = -4

    FilterData(3) = "or>"

    ssetObj.SelectByPolygon mode, pointsArray, FilterType, FilterData

    For Each entity In ssetObj

    Debug.Print entity.TextString

    Next

    ssetObj.Delete

    Next i

End Sub

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
发表于 2006-11-30 09:18:00 | 显示全部楼层

本人测试本段程序在CAD2004下结果正确,最好把你的图也传上来看看.

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 22:36 , Processed in 0.176731 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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