明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1206|回复: 2

[求助]打开文档时不是模型空间的问题

[复制链接]
发表于 2010-6-29 16:47:00 | 显示全部楼层 |阅读模式

有些文件打开的时候是在布局的状态中

 

请教一下。怎么在打开它时把它设置为模型空间的状态呢。

 

用什么类的什么函数呢?

发表于 2010-7-1 10:23:00 | 显示全部楼层
http://forums.autodesk.com/t5/NET/Changing-Current-Layout/m-p/2651396#M18401
  1.         [CommandMethod("t11", CommandFlags.Session)]
  2.         public static void Test11()
  3.         {
  4.             Document doc = Application.DocumentManager.MdiActiveDocument;
  5.             Database db = doc.Database;
  6.             Editor ed = doc.Editor;
  7.             using (doc.LockDocument())
  8.             {
  9.                 using (Transaction tr = db.TransactionManager.StartTransaction())
  10.                 {
  11.                     var bt = db.BlockTableId.GetObject(OpenMode.ForRead) as BlockTable;
  12.                     var btr = bt[BlockTableRecord.ModelSpace].GetObject(OpenMode.ForRead) as BlockTableRecord;
  13.                     Layout lo = btr.LayoutId.GetObject(OpenMode.ForRead) as Layout;
  14.                     LayoutManager.Current.CurrentLayout = lo.LayoutName;
  15.                     tr.Commit();
  16.                 }
  17.             }
  18.         }
 楼主| 发表于 2010-7-1 14:16:00 | 显示全部楼层
非常感谢版主,问题解决了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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