在工作中直接记录开发总结的函数,代码简洁,直接复制即可使用.支持的版本2019
using RvtDb = Autodesk.Revit.DB;
//创建墙体类型
public ElementId CreatWallType(RvtDb.Document doc, string wallTypeName, double width)
{
//检索项目中是否存在该墙体样式,如果存在,则直接读取
ElementId wallTypeId = null;
FilteredElementCollector collector = new FilteredElementCollector(doc);
var wllTypes = collector.OfClass(typeof(WallType)).ToList();
foreach (WallType item in wllTypes)
{
if (item.Name == wallTypeName)
{
return item.Id;
}
}
//查找一个基本墙体类型
WallType baseWallType = null;
foreach (WallType item in wllTypes)
{
遍历查找基本墙体作为基础墙体类型
if (item.Category.Name == "墙" && item.FamilyName == "基本墙")
{