20 lines
513 B
C#
20 lines
513 B
C#
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);
|
|
}
|
|
}
|