DocumentUtils.cs 952 B

123456789101112131415161718192021222324252627282930313233
  1. /* ==============================================================================
  2. * 功能描述:DocumentUtils
  3. * 创 建 者:Garrett
  4. * 创建日期:2019/5/31 17:06:30
  5. * ==============================================================================*/
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. using Autodesk.Revit.DB;
  12. using SAGA.RevitUtils.Extends;
  13. namespace ServiceRevitLib
  14. {
  15. /// <summary>
  16. /// DocumentUtils
  17. /// </summary>
  18. class DocumentUtils
  19. {
  20. /// <summary>
  21. /// 由路径获取Doc,
  22. /// 获取Doc的方法可以更改,可用RevitNet
  23. /// </summary>
  24. /// <param name="filePath"></param>
  25. /// <returns></returns>
  26. public static Document GetDocument(string filePath)
  27. {
  28. return ExternalDataWrapper.Current.App.OpenDocumentFile(filePath); ;
  29. }
  30. }
  31. }