明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1232|回复: 3

怎么在已有的块定义增加个圆?

[复制链接]
发表于 2011-1-4 21:33:45 | 显示全部楼层 |阅读模式
我想在图中已有的块定义里增加圆,运行结果加了圆 但是会过一会儿就 或者 双击块定义 致命错误了

Public Sub AddCircle()
        '' Get the current document and database
        Dim acDoc As Document = Application.DocumentManager.MdiActiveDocument
        Dim acCurDb As Database = acDoc.Database
        '' Start a transaction
        Using acLckDoc As DocumentLock = acDoc.LockDocument()
            Using acTrans As Transaction = acCurDb.TransactionManager.StartTransaction()
                '' Open the Block table for read
                Dim acBlkTbl As BlockTable
                acBlkTbl = acTrans.GetObject(acCurDb.BlockTableId, OpenMode.ForWrite)
                '' Open the Block table record Model space for write
                Dim acBlkTblRec As BlockTableRecord
                acBlkTblRec = acTrans.GetObject(acBlkTbl("11"), OpenMode.ForWrite)
                '' Create a circle that is at 2,3 with a radius of 4.25
                Dim acCirc As Circle = New Circle()
                acCirc.SetDatabaseDefaults()
                acCirc.Center = New Point3d(2, 3, 0)
                acCirc.Radius = 4.25
                '' Add the new object to the block table record and the transaction
                acBlkTblRec.AppendEntity(acCirc)
                ' acTrans.AddNewlyCreatedDBObject(acCirc, True)
                acBlkTblRec.Dispose()
                acBlkTbl.Dispose()
                '' Save the new object to the database
                acTrans.Commit()
            End Using
        End Using
    End Sub
 楼主| 发表于 2011-1-4 22:01:25 | 显示全部楼层
"11" 是我预先随便定义的一个块名  
发表于 2011-1-4 23:05:01 | 显示全部楼层
' acTrans.AddNewlyCreatedDBObject(acCirc, True)
这句不要注释掉
 楼主| 发表于 2011-1-5 08:40:12 | 显示全部楼层
呵呵  谢谢 sxpd
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 22:52 , Processed in 0.180842 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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