添加项目文件。
This commit is contained in:
19
KGdev.BI3D.Revit.Common/ILinkedDocumentsUtilities.cs
Normal file
19
KGdev.BI3D.Revit.Common/ILinkedDocumentsUtilities.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Autodesk.Revit.DB;
|
||||
using KGdev.BI3D.Revit.Common.Models;
|
||||
|
||||
namespace KGdev.BI3D.Revit.Common
|
||||
{
|
||||
public interface ILinkedDocumentsUtilities
|
||||
{
|
||||
IList<LinkedDocumentInformation> GetLinkedDocuments(
|
||||
Document rootDocument,
|
||||
Transform baseTransform,
|
||||
bool includeThis,
|
||||
List<ElementId> passedLinkInstanceId
|
||||
);
|
||||
|
||||
Element GetElement(Document rootDocument, LinkedElementIdPath path);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user