RevitAPI InsulationType 绝缘类型

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/csdn_wuwt/article/details/83176891

RevitAPI InsulationType 绝缘类型


#region 程序集 RevitAPI.dll, v16.0.0.0
// C:\Program Files\Autodesk\Revit 2016\RevitAPI.dll
#endregion

using Autodesk.Revit.DB;
using System;

namespace Autodesk.Revit.DB.Electrical
{
    // 摘要:
    //     Represents electrical insulation type definition information.
    //
    // 备注:
    //     Insulation type is defined based on corresponding wire material type and
    //     temperature rating type.
    public class InsulationType : ElementType
    {
        // 摘要:
        //     Indicate whether the insulation type is in use.
        public bool IsInUse { get; }
        //
        // 摘要:
        //     Get name of Insulation type.
        //
        // 异常:
        //   Autodesk.Revit.Exceptions.InvalidOperationException:
        //     Set name can't be supported.
        public override string Name { set; }
    }
}

猜你喜欢

转载自blog.csdn.net/csdn_wuwt/article/details/83176891