• Revit API修改保温层厚度


    start
    [Transaction(TransactionMode.Manual)]
    [Regeneration(RegenerationOption.Manual)]
    public class cmd : IExternalCommand
    {
        public Result Execute(ExternalCommandData cmdData, ref string msg, ElementSet elements)
        {
            UIDocument uiDoc = cmdData.Application.ActiveUIDocument;
            Document doc = uiDoc.Document;
            Selection selection = uiDoc.Selection;

            Transaction ts = new Transaction(doc, this.ToString());
            ts.Start();
            //
            Reference refWall = selection.PickObject(ObjectType.Element, "选择墙:");
            Wall wall = doc.GetElement(refWall) as Wall;
            WallType wallType = wall.WallType;
            CompoundStructure cs = wallType.GetCompoundStructure();
            bool bHas = false;//是否拥有保温层
            int iWidth = 100;//要设置的保温层厚度
            IList<CompoundStructureLayer> layers = cs.GetLayers();//找到所有层
            foreach (CompoundStructureLayer layer in layers)
            {
                if (layer.Function == MaterialFunctionAssignment.Insulation)//判断保温层
                {
                    bHas = true;
                    layer.Width = iWidth / 304.8;
                }
            }
            if (!bHas)//没有保温层则创建
            {
                CompoundStructureLayer newLayer = new CompoundStructureLayer();
                newLayer.Function = MaterialFunctionAssignment.Insulation;
                newLayer.Width = iWidth / 304.8;
                //layers.Add(newLayer);
                layers.Insert(0, newLayer);
            }
            cs.SetLayers(layers);
            wallType.SetCompoundStructure(cs);
            //
            ts.Commit();

            return Result.Succeeded;
        }
    }
    url:http://greatverve.cnblogs.com/p/revit-api-CompoundStructureLayer.html
  • 相关阅读:
    关于负数补码的求解
    二维数组的行列指针
    复杂类型的解读
    单斜杠''的思考
    HTML 文本格式化实例--常用的标签
    P1 基础知识以及客户截面 【B站 SolidWorks2014教学视频 共计20讲】
    SolidWorks 2-5 草图的绘制
    SolidWorks 2-4 草图简介
    SolidWorks 模型创建的一般过程 2019年2月25日
    P3 3.HTML&CSS基础_HTML简介 (24'22")---------- 高质量HTML与CSS基础(共103讲)
  • 原文地址:https://www.cnblogs.com/greatverve/p/revit-api-CompoundStructureLayer.html
Copyright © 2020-2023  润新知