明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2439|回复: 4

急~如何提取块属性值~

[复制链接]
发表于 2010-9-1 19:54:00 | 显示全部楼层 |阅读模式
 大侠们,谁能教一下如何在C#中提取图纸中块属性的值~~~~   是不是用 Autodesk.AutoCAD.ApplicationServices.Application这些API,谁能帮忙写个详细的句子~~ 多谢了!!!
发表于 2010-9-2 22:16:00 | 显示全部楼层
最好自己先看看手册
  1.         [CommandMethod("tt4")]
  2.         public void test24()
  3.         {
  4.             Document doc = Application.DocumentManager.MdiActiveDocument;
  5.             Editor ed = doc.Editor;
  6.             Database db = doc.Database;
  7.             PromptEntityOptions opts = new PromptEntityOptions("\n选择一个块参照:");
  8.             opts.SetRejectMessage("错误的选择!");
  9.             opts.AddAllowedClass(typeof(BlockReference), false);
  10.             PromptEntityResult res = ed.GetEntity(opts);
  11.             if (res.Status != PromptStatus.OK)
  12.                 return;
  13.             using (Transaction tr = db.TransactionManager.StartTransaction())
  14.             {
  15.                 BlockReference bref = tr.GetObject(res.ObjectId, OpenMode.ForRead) as BlockReference;
  16.                 foreach (ObjectId id in bref.AttributeCollection)
  17.                 {
  18.                     AttributeReference attref = tr.GetObject(id, OpenMode.ForRead) as AttributeReference;
  19.                     ed.WriteMessage( "\n" + attref.TextString);
  20.                 }
  21.             }
  22.         }
发表于 2011-7-16 15:28:39 | 显示全部楼层
还是狐哥牛人一个.
发表于 2011-7-16 17:07:38 | 显示全部楼层
发现狐哥最近很少上论坛了
发表于 2011-10-7 19:13:26 | 显示全部楼层
这个东西好。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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