明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 723|回复: 2

删除对象出错

[复制链接]
发表于 2015-5-7 16:09:31 | 显示全部楼层 |阅读模式
我想删除这个对象,但是一运行   obj.Erase(True)   cad就崩掉,要怎么操作才能删除它啊,求解,谢谢!



Public Sub GetXData()

        Dim doc As Autodesk.AutoCAD.ApplicationServices.Document = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument

        Dim ed As Editor = doc.Editor

        Dim peo As PromptEntityOptions = New PromptEntityOptions("\n请选择实体:")

        Dim per As PromptEntityResult = ed.GetEntity(peo)

        'Dim ent As Entity = Nothing

        If per.Status = PromptStatus.OK Then

            Dim trans As Transaction = doc.TransactionManager.StartTransaction()

            Dim obj As Entity = trans.GetObject(per.ObjectId, OpenMode.ForRead)

            Dim rb As ResultBuffer = obj.XData

            If rb Is Nothing Then

                ed.WriteMessage("\n实体不包括扩展数据")
            Else

                Dim n As Integer = 0

                Dim tv As TypedValue
                For Each tv In rb

                    ed.WriteMessage("\n类型值{0} - 类型: {1}, 值: {2}", n, tv.TypeCode, tv.Value)

                    n = n + 1

                Next

                Try
                    If Not obj = Nothing Then
                        obj.Erase(True)
                    End If
                Catch ex As Exception
                    MsgBox(ex.Message)
                End Try


                rb.Dispose()

            End If

            trans.Dispose()

        End If

    End Sub




发表于 2015-5-7 17:40:38 来自手机 | 显示全部楼层
实体删除要写打开
 楼主| 发表于 2015-5-8 09:23:10 | 显示全部楼层
果然如此啊,是我粗心了。谢谢!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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