首页 > 其他 > 详细

Revit 二次开发 自动选中对象

时间:2014-05-24 00:31:46      阅读:1178      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣

//
获取选中对象 [TransactionAttribute(Autodesk.Revit.Attributes.TransactionMode.Manual)] public class setSelectEle : IExternalCommand { public Result Execute(ExternalCommandData commandData, ref string messages, ElementSet elements) { SetSelectionElement(commandData, elements); return Result.Succeeded; } public void SetSelectionElement(ExternalCommandData commandData, ElementSet elements) { UIApplication app = commandData.Application; Document doc = app.ActiveUIDocument.Document; //获取id为729401的Element ElementId el = new ElementId(729401);
     Element e = doc.GetElement(el);
        Selection sel = app.ActiveUIDocument.Selection;  
     Transaction trans
= new Transaction(doc);
     trans.Start(
"SetSelection");

     //添加到当前选择集中
     sel.Elements.Add(e);

     trans.Commit();
  }

}
bubuko.com,布布扣

Revit 二次开发 自动选中对象,布布扣,bubuko.com

Revit 二次开发 自动选中对象

原文:http://www.cnblogs.com/siyuan926/p/3736878.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!