关于二次开发基础教程中遇到的问题001


同济大学出版的二次开发基础教程,里面经常出现这样的代码:
ElementSet elems = commandData.Application.ActiveUIDocument.Selection.Elements;
然而在2015API中 Elements属性已经废弃 Obsolete,你在输入这段代码的时候系统会报错。
替代方法是:获得选中元素的ID;然后对ID进行操作。
代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autodesk.Revit;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using Autodesk.Revit.Attributes;
using System.Collections;
namespace RevitDemotest
{
    [Transaction(TransactionMode.Manual)]
    public class Command : IExternalCommand
    {
        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            message = "Please take attention on the highlighted Walls!";
            //先从 UI 选取元素,然后执行该插件
            ElementSet elementSet = new ElementSet();
            ArrayList walls = new ArrayList();
            foreach (ElementId elementId in commandData.Application.ActiveUIDocument.Selection.GetElementIds())
            {
                elementSet.Insert(commandData.Application.ActiveUIDocument.Document.GetElement(elementId));
            }
                foreach (Element element in elementSet)
                {
                    Wall wall = element as Wall;
                 if (null!=wall)
                {
                    walls.Add(wall);
                }
                }           
            return Result.Failed;
        }
    }
}
执行结果如下:

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值