• vs2015对revit2018二次开发之导出dwg


    通过API:doc.Export()方法导出dwg

    using Autodesk.Revit;
    using Autodesk.Revit.DB;
    using Autodesk.RevitAddIns;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Reflection;
    
    namespace ReadRvt
    {
        class Program
        {
            static readonly string[] searchs = new string[] { "D:/Program Files/Autodesk/Revit 2018" };
    
            static Program()
            {
    
                AddEnvironmentPaths(searchs);
                AppDomain.CurrentDomain.AssemblyResolve += OnAssemblyResolve;
    
            }
            [STAThread]//一定要有
            static void Main(string[] args)
            {
    
                Product _product = Product.GetInstalledProduct();
                var clientId = new ClientApplicationId(Guid.NewGuid(), "RevitNetTest", "TEST");
                _product.Init(clientId, "I am authorized by Autodesk to use this UI-less functionality.");
                Autodesk.Revit.ApplicationServices.Application _application = _product.Application;
                string _modelPath = @"E:/测试项目/mine/xx.rvt";
                Document doc = _application.OpenDocumentFile(_modelPath);
                Console.WriteLine("RVT文件已经打开");
                //
                FilteredElementCollector collector = new FilteredElementCollector(doc);
                collector.OfClass(typeof(View)).OfCategory(BuiltInCategory.OST_Views);string pathFullName = "E:/data/dwg/xx";
                DWGExportOptions dwgOptions = new DWGExportOptions
                {
                    FileVersion = ACADVersion.R2010,
                };
                string folder = Path.GetDirectoryName(pathFullName);
                string name = Path.GetFileNameWithoutExtension(pathFullName);
    
                List<ElementId> viewIds = new List<ElementId>();
                try
                {//多个视图
                    foreach (View view in collector.ToElements())
                    {
                        if (view.CanBePrinted)
                        {
                            viewIds.Add(view.Id);
                        }
                    }
                    Console.WriteLine("   start   ");
                    doc.Export(folder, name, viewIds, dwgOptions);
                }catch(Exception e)
                {
                    Console.WriteLine(e.Message);
                }
                Console.WriteLine("   ok   ");
                doc.Close();
                _product?.Exit();
                Console.ReadKey(true);
            }
    
            static void AddEnvironmentPaths(params string[] paths)
            {
                try
                {
                    var path = new[] { Environment.GetEnvironmentVariable("PATH") ?? string.Empty };
                    var newPath = string.Join(System.IO.Path.PathSeparator.ToString(), paths.Concat(path));
                    Environment.SetEnvironmentVariable("PATH", newPath);
    
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.ToString());
                }
    
            }
            private static Assembly OnAssemblyResolve(object sender, ResolveEventArgs args)
            {
                try
                {
                    var assemblyName = new AssemblyName(args.Name);
                    foreach (var item in searchs)
                    {
                        var file = string.Format("{0}.dll", System.IO.Path.Combine(item, assemblyName.Name));
    
                        if (File.Exists(file))
                        {
                            return Assembly.LoadFile(file);
                        }
                    }
    
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.ToString());
                }
                return args.RequestingAssembly;
    
            }
        }
    }

     

  • 相关阅读:
    Red Hat Enterprise Linux Server 5.5新增功能简介
    DNS Flood Detector让DNS更安全
    iPad之Linux平台实践
    Fedora 10下应用网络模拟器NS心得
    深入了解Linux远程桌面
    Linux下基于LDAP统一用户认证的研究
    Linux架设Jsp环境
    Fedora 13 Alpha测试手记横空出世
    高層タワー [MISSION LEVEL: B]
    機械の総合病院 [MISSION LEVEL: C]
  • 原文地址:https://www.cnblogs.com/baby123/p/13953627.html
Copyright © 2020-2023  润新知