- 积分
- 514
- 明经币
- 个
- 注册时间
- 2003-8-11
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
楼主 |
发表于 2003-9-14 17:56:00
|
显示全部楼层
首先用令组码FilterType=8,组码值FilterData=“Dm”
ssetobj.Select acSelectionSetAll, , , filtertype, filterdata
这时的选择集中均为实体
定义二个对象变量分别为textobj,entobj
在选择集中遍历entobj实体,同时用其句柄设置textobj选择集
这时就可以对textobj选择集进行操作了。
Dim textobj As AcadText
filtertype =8
filterdata =“Dm”
ssetobj.Select acSelectionSetAll, , , filtertype, filterdata
Dim enobj As AcadEntity
For Each enobj In ssetobj
Set textobj = acadapp.ActiveDocument.HandleToObject(pic.Handle)
na = textobj.TextString
Next |
|