Autodesk.Revit.DB.ExportLinetypeTable
类实现了导出 Revit 图形文档的虚线类型表。
ExportLinetypeTable(Document document) -> ExportLinetypeTable
参数
document
- 用于导出的 Revit 文档对象。返回值
ExportLinetypeTable
- 表示导出的虚线类型表。string GetName(int index)
获取指定虚线类型的名称。
参数
index
- 虚线类型的索引,范围从 0
到 Count-1
。返回值
string
- 表示虚线类型的名称。LinePattern GetLinePattern(int index)
获取指定虚线类型的线型。
参数
index
- 虚线类型的索引,范围从 0
到 Count-1
。返回值
LinePattern
- 表示虚线类型的线型。int Count
获取虚线类型的数量。
返回值
int
- 表示虚线类型的数量。以下示例演示如何使用 ExportLinetypeTable
类获取导出 Revit 文档中的虚线类型表。
// 获取当前文档对象
Document doc = ActiveUIDocument.Document;
// 创建 ExportLinetypeTable 对象
ExportLinetypeTable table = new ExportLinetypeTable(doc);
// 获取虚线类型的数量并输出
int count = table.Count;
TaskDialog.Show("虚线类型数量", count.ToString());
// 输出每个虚线类型的名称和线型
for (int i = 0; i < count; i++)
{
string name = table.GetName(i);
LinePattern pattern = table.GetLinePattern(i);
TaskDialog.Show(name, pattern.ToString());
}