AutoCAD.Net/C#.Net QQ群:193522571 从已有A.DWG中复制块BLK到新DWG中的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AutoCAD.Net/C#.Net QQ群:193522571 从已有A.DWG中复制块BLK到新DWG中的方法相关的知识,希望对你有一定的参考价值。

1.新建一个Database,new Database(true, false);

2.以A.DWG为原型新建一个Database,new Database(false,true);

3.将2中的块表记录复制到1的块表中;

4.新建一个块参照,new BlockReference(blockReferencePoint, blocoId);

5.插入到1的Database中,InsertBlockReference(db, blockReference);

 

对于已有的DWG:new Database(false,true);

对于新建的DWG:  new Database(false,true);

以上是关于AutoCAD.Net/C#.Net QQ群:193522571 从已有A.DWG中复制块BLK到新DWG中的方法的主要内容,如果未能解决你的问题,请参考以下文章

AutoCAD.Net/C#.Net QQ群:193522571 ComBobox绑定Datatable并去除重复!

AutoCAD.Net/C#.Net QQ群:193522571 从已有A.DWG中复制块BLK到新DWG中的方法

AutoCAD.Net/C#.Net QQ群:193522571 C#判断文件夹是否已经打开

AutoCAD.Net/C#.Net QQ群:193522571 32位进程无法访问64位进程模块,解决getprocesses方法对32位无效的问题

Yocto开发笔记之《Linux蓝牙驱动》(QQ交流群:519230208)

19中间者模式(Mediator Pattern)