123456789101112131415161718192021222324252627282930313233 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Autodesk.Revit.DB;
- using SAGA.RevitUtils.Extends;
- namespace ServiceRevitLib
- {
-
-
-
- class DocumentUtils
- {
-
-
-
-
-
-
- public static Document GetDocument(string filePath)
- {
-
- return ExternalDataWrapper.Current.App.OpenDocumentFile(filePath); ;
- }
- }
- }
|