明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1071|回复: 5

插入dwg为块的问题

[复制链接]
发表于 2015-5-31 10:57:48 | 显示全部楼层 |阅读模式
本帖最后由 Real_King 于 2015-5-31 11:01 编辑

VBA中,可以用下面的语句
Set m_ref = ThisDrawing.ModelSpace.InsertBlock(m_insertpoint, "C:\Windows\CycFonts\" &  "123.dwg", m_scale, m_scale, m_scale, 0)

在当前图形中插入一个123.dwg的图形,插入后,此图形成了块
方法是InsertBlock(),C# .NET中,我好像没找到这个函数,要不只有通过COM调用?
或者用教程第二版中的方法,这样看起来代码很繁琐,请问C# .net下有没有VBA InsertBlock()这样直接可以用dwg路径插入block的方法?
发表于 2015-5-31 11:54:31 来自手机 | 显示全部楼层
help
You can also insert an entire drawing file into the current drawing by using the ReadDwgFile method to open a drawing file in memory, and then use the Insert method to insert the drawing in memory into the current drawing. When you insert an entire drawing into another drawing, AutoCAD treats the inserted drawing like any other block reference. Subsequent insertions reference the block definition (which contains the geometric description of the block) with different position, scale, and rotation settings.
 楼主| 发表于 2015-5-31 15:33:12 | 显示全部楼层
本帖最后由 Real_King 于 2015-5-31 15:39 编辑
ivde 发表于 2015-5-31 11:54
help
You can also insert an entire drawing file into the current drawing by using the ReadDwgFile m ...

thanks.i don't know there is ReadDwgFile method in it.by the way ,where did you get the information?can you give me the link?
发表于 2015-5-31 16:52:43 | 显示全部楼层
发表于 2015-6-4 23:19:07 | 显示全部楼层
   using (Database blkDb = new Database(false, true))
                    {
                        blkDb.ReadDwgFile(filename, System.IO.FileShare.Read, true, null);
                        blkDb.CloseInput(true);
                        using (DocumentLock docLock = doc.LockDocument())//多文档要先这样,否则报至命错误
                        {
                            using (Transaction t = doc.TransactionManager.StartTransaction())
                            {
                                ObjectId idBTR = doc.Database.Insert(blkdefname, blkDb, false);
                                t.Commit();
                            }
                        }
                        blkDb.Dispose();
 楼主| 发表于 2015-6-5 20:59:53 | 显示全部楼层
Arthas 发表于 2015-6-4 23:19
using (Database blkDb = new Database(false, true))
                    {
                       ...

thanks,already
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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