惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Y
Y Combinator Blog
I
InfoQ
美团技术团队
罗磊的独立博客
B
Blog RSS Feed
GbyAI
GbyAI
小众软件
小众软件
IT之家
IT之家
Engineering at Meta
Engineering at Meta
Blog — PlanetScale
Blog — PlanetScale
V
V2EX
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
MyScale Blog
MyScale Blog
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss

博客园 - Albert_MIN

在 ASP.NET Core 中创建中间件的五种方式 在 ASP.NET Core MVC 中,接收数据的几种方式 Content-Type 对应不同的前端数据结构与构造方式 Revit二次开发 钢筋生成API(二) Revit二次开发 钢筋生成API(一) revit二次开发 钢筋布置方式 revit二次开发之 钢筋功能详细分析 revit 二次开发之收集器、过滤器和选择器 Revit Server的注意要配置说明 WCF文件配置服务 WCF服务的各种绑定 Revit二次开发之 对象的隐藏与显示 Revit二次开发之 GeometryObject分析 Revit二次开发之 Material 分析 Revit二次开发之 PolymeshTopology Revit开发之 IExportContext接口详细 JavaScript 困惑之 ArrayBuffer JS 困惑之this的指向 Revit二次开发之 族的创建 Revit二次开发 钢筋生成 Revit二次开发之 尺寸标线(二) Revit二次开发之 尺寸标线
Revit 二次开发之 图纸的导出
Albert_MIN · 2023-07-15 · via 博客园 - Albert_MIN

在Revit自带的导出功能中,我们可以知道,Revit可以导出如下格式文件:

他们分别对应的API在Document类下面,主要包含以下方法

1 Export(String, String, MassGBXMLExportOptions)

从体量模型文档中导出gbXML文件。

2 Export(String, String, GBXMLExportOptions)

从当前模型文档中导出gbXML文件。

3 Export(String, String, IFCExportOptions)

从当前模型文档中导出IFC文件。

4 Export(String, String, NavisworksExportOptions)

从当前模型文档中导出.nwc文件。

5 Export(String, String, ViewSet, DWFExportOptions)

从当前模型文档中导出.dwf文件。

6 Export(String, String, ViewSet, DWFXExportOptions)

从当前模型文档中导出.dwfx文件。

7 Export(String, String, ViewSet, FBXExportOptions)

从当前模型文档中导出.fbx文件。

8 Export(String, String, ICollection<(Of <<'(ElementId>)>>), DGNExportOptions)

导出选择的视图为dgn

9 Export(String, String, ICollection<(Of <<'(ElementId>)>>), DWGExportOptions)

导出指定视图为dwg

10 Export(String, String, ICollection<(Of <<'(ElementId>)>>), DXFExportOptions)

导出指定视图为dxf

11 Export(String, String, ICollection<(Of <<'(ElementId>)>>), SATExportOptions)

导出指定视图为.sat

 详细说明:

房间对应GBXMLExportOptions

 编号NameDescription
1 Encoding

设置当前的编码方式

2 ExportEnergyModelType

SpatialElement 房间和空间

BuildingElement 分析表面

2 IsValidObject

判断当前元素是否验证

分析表面对应:MassGBXMLExportOptions

编号 NameDescription
1 MassGBXMLExportOptions(IList<(Of <<'(ElementId>)>>))

传入要导出的体量模型

2 MassGBXMLExportOptions(IList<(Of <<'(ElementId>)>>), IList<(Of <<'(ElementId>)>>))

传入要导出的体量模型