博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Revit API修改保温层厚度
阅读量:5959 次
发布时间:2019-06-19

本文共 1337 字,大约阅读时间需要 4 分钟。

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:

转载于:https://www.cnblogs.com/greatverve/p/revit-api-CompoundStructureLayer.html

你可能感兴趣的文章
程序员全国不同地区,微信(面试 招聘)群。
查看>>
【干货】界面控件DevExtreme视频教程大汇总!
查看>>
闭包 !if(){}.call()
查看>>
python MySQLdb安装和使用
查看>>
Java小细节
查看>>
poj - 1860 Currency Exchange
查看>>
chgrp命令
查看>>
Java集合框架GS Collections具体解释
查看>>
洛谷 P2486 BZOJ 2243 [SDOI2011]染色
查看>>
数值积分中的辛普森方法及其误差估计
查看>>
Web service (一) 原理和项目开发实战
查看>>
跑带宽度多少合适_跑步机选购跑带要多宽,你的身体早就告诉你了
查看>>
广平县北方计算机第一届PS设计大赛
查看>>
深入理解Java的接口和抽象类
查看>>
java与xml
查看>>
Javascript异步数据的同步处理方法
查看>>
iis6 zencart1.39 伪静态规则
查看>>
SQL Server代理(3/12):代理警报和操作员
查看>>
Linux备份ifcfg-eth0文件导致的网络故障问题
查看>>
2018年尾总结——稳中成长
查看>>