明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 776|回复: 1

为什么不能获取属性值?

[复制链接]
发表于 2015-7-9 08:55:29 | 显示全部楼层 |阅读模式
我用.net的方法读取块里的属性

Private Function DbxGetBlocksData(btr As BlockTableRecord, doc As Document) As Dictionary(Of String, String)

        Dim dic As New Dictionary(Of String, String)

        Dim db As Database = doc.Database

        Using trans As Transaction = db.TransactionManager.StartTransaction
            For Each obj_id As ObjectId In btr

                Dim ent As Entity = trans.GetObject(obj_id, OpenMode.ForRead)

                If ent.GetType.Name = "AttributeDefinition" Then

                    Dim adf As AttributeDefinition = ent

                   dic.Add(adf.Tag, adf.TextString)

                   daf.Tag可以获取属性名称,但是daf.TextString的值始终是"",请问一下是为什么?

                End If
            Next
        End Using
        Return dic
    End Function

 楼主| 发表于 2015-7-9 10:58:15 | 显示全部楼层
搞定了,贴上来,免得以后忘了。

    Dim brf_ids As ObjectIdCollection = btr.GetBlockReferenceIds(True, False)

                Dim br As BlockReference

                For Each brf_id As ObjectId In brf_ids

                    Dim obj As Object = brf_id.GetObject(OpenMode.ForRead)

                    If obj.GetType.Name = "BlockReference" Then

                        br = obj

                        If br.Name.StartsWith("股份公司-") Then

                            For Each att_id As ObjectId In br.AttributeCollection

                                Dim att As AttributeReference = att_id.GetObject(OpenMode.ForRead)

                                If att.Tag.StartsWith("名称{") Then

                                    dObj.PaperName = att.TextString

                                End If

                                If att.Tag.StartsWith("图号{") Then

                                    dObj.PaperCode = att.TextString

                                End If

                            Next

                            Exit For

                        End If



                    End If

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

本版积分规则

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

GMT+8, 2024-11-25 10:59 , Processed in 0.169227 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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