明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1355|回复: 2

如何从DRAWING获取文本的坐标和内容

[复制链接]
发表于 2005-1-7 22:49:00 | 显示全部楼层 |阅读模式
小弟初学编程,现在工作中需要把CAD图纸中的文本读出并放入表格,需要得到文本的内容和文本的坐标, Dim sset As AcadSelectionSet
Set sset = ActDocument.SelectionSets.Add("S") sset.SelectOnScreen For Each Entry In sset 这中间我应怎么办?
Entry.Update
Next 请各位高手指教,万分感激!!!!
发表于 2005-1-8 00:03:00 | 显示全部楼层
Dim i As Integer


For i = 0 To ssetObj.Count - 1


         Dim ent As AcadEntity


         Set ent = ssetObj.Item(i)


         If ent.ObjectName = "AcDbText" Then


                         Dim textObj As AcadText


                         Set textObj = ent


                         ...


         End If


Next
发表于 2005-1-8 00:12:00 | 显示全部楼层
建议使用过滤器 Dim Select1 As AcadSelectionSet
FilterType(0) = 0: FilterData(0) = "TEXT"
Select1.SelectOnScreen FilterType, FilterData Dim textobj As AcadText
Dim Text_String As String
Dim Text_InsertPoint As Variant 下面为TEXT文本的内容和坐标,注意只对应于DTEXT而不包括MTEXT Text_String = textobj.TextString
Text_InsertPoint = textobj.InsertionPoint
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-27 20:40 , Processed in 0.169476 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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