明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 841|回复: 1

怎么遍历取当前图纸指定块的Position坐标?

[复制链接]
发表于 2015-4-27 15:37:46 | 显示全部楼层 |阅读模式
求代码 谢谢```````````````````````````
发表于 2015-4-27 16:36:27 | 显示全部楼层
  1.         [CommandMethod("tta")]
  2.         public static void tta()
  3.         {
  4.             Document doc = Application.DocumentManager.MdiActiveDocument;
  5.             Editor ed = doc.Editor;
  6.             Database db = doc.Database;

  7.             var resStr =
  8.                 ed.GetString("\nPlease Input BlockName:");
  9.             if (resStr.Status != PromptStatus.OK)
  10.                 return;

  11.             var resSel =
  12.                 ed.SelectAll(
  13.                     new SelectionFilter(
  14.                         new TypedValue[]
  15.                         {
  16.                             new TypedValue(0, "Insert"),
  17.                             new TypedValue(2, resStr.StringResult)
  18.                         }));
  19.             if (resSel.Status != PromptStatus.OK)
  20.                 return;

  21.             using (var tr = db.TransactionManager.StartTransaction())
  22.             {
  23.                 foreach(var id in resSel.Value.GetObjectIds())
  24.                 {
  25.                     var br = tr.GetObject(id, OpenMode.ForRead) as BlockReference;
  26.                     ed.WriteMessage("\n{0}", br.Position);
  27.                 }
  28.             }

  29.         }
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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