我正在使用RevitAPI开发Revit插件。
我通过复制现有的WallType来创建一个新的WallType。然后我编辑结构 - 添加新图层。 另外,我将OpeningWrapping设置为Both,我想将EndCap设置为Interior。
不幸的是,EndCap永远不会改变并保持外观
structure.EndCap = EndCapCondition.Interior;
structure.OpeningWrapping = OpeningWrappingCondition.ExteriorAndInterior;
有人对于它没有改变的原因有任何想法吗?
提前谢谢!
伊万