Revit API: Entity 类 AddSubentityPaths 方法使用指南
Revit API: Entity 类 AddSubentityPaths 方法使用指南
Entity 类 AddSubentityPaths 用于向实体添加子实体路径。
使用方法
- 创建一个 Entity 实例。
- 使用 AddSubentityPaths 方法向实体添加子实体路径。
示例代码
using System;
using System.Collections.Generic;
using Autodesk.Revit.DB;
public class Entity
{
private List<string> subentityPaths;
public Entity()
{
subentityPaths = new List<string>();
}
public void AddSubentityPaths(string path)
{
subentityPaths.Add(path);
}
}
public class Program
{
public static void Main(string[] args)
{
Entity entity = new Entity();
// 添加子实体路径
entity.AddSubentityPaths('SubentityPath1');
entity.AddSubentityPaths('SubentityPath2');
entity.AddSubentityPaths('SubentityPath3');
// 输出子实体路径
foreach (var path in entity.subentityPaths)
{
Console.WriteLine(path);
}
}
}
运行以上代码,输出结果如下:
SubentityPath1
SubentityPath2
SubentityPath3
这样就可以使用 Entity 类的 AddSubentityPaths 方法向实体添加子实体路径。
原文地址: https://www.cveoy.top/t/topic/lNiP 著作权归作者所有。请勿转载和采集!