<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Rvit Plan View custom export (DWFx or SVG, etc.) in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186539#M76744</link>
    <description>&lt;P&gt;3a. Clone the source code from GitHub:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/jeremytammik/RoomEditorApp" target="_blank"&gt;https://github.com/jeremytammik/RoomEditorApp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3b. Load the solution file in Visual Studio.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3c. Search globally for "svg".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
    <pubDate>Thu, 31 Jul 2014 08:19:15 GMT</pubDate>
    <dc:creator>jeremytammik</dc:creator>
    <dc:date>2014-07-31T08:19:15Z</dc:date>
    <item>
      <title>Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5039904#M76741</link>
      <description>&lt;P&gt;Hello my name is Daniel, am researching Printing and Export process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My questions are:&lt;/P&gt;&lt;P&gt;1. How does the export to DWFx work?&lt;/P&gt;&lt;P&gt;2. Is the process simply exports all visible elements on plan view (Geometry, Annotation, etc.), or is there a more&lt;/P&gt;&lt;P&gt;complicated process such as printing preprocessing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The reason I’m asking is, what if I would like to create my own Plan View export, for example to SVG or&lt;/P&gt;&lt;P&gt;Some other XML based format of my own creation. With complete detail information (Annotations, etc).&lt;/P&gt;&lt;P&gt;Do you think that would be possible? Or maybe there is an API similar to IFC exporter that may be available&lt;/P&gt;&lt;P&gt;In the future?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Sun, 18 May 2014 17:42:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5039904#M76741</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-18T17:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5043064#M76742</link>
      <description>&lt;P&gt;Dear Daniel,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your query.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are a lot of answers to this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. How does the export to DWFx work?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first answer is simple, and applies to most of the Revit API:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Revit API export to DXFx works exactly the same way as the user interface functionality.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Call the Document.Export method overload taking a DWFXExportOptions argument to exports the current view or a selection of views in DWFX format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For examples, please look at the Revit SDK and The Building Coder blog, e.g.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://lmgtfy.com/?q=building+coder+dwf+export" target="_blank"&gt;http://lmgtfy.com/?q=building+coder+dwf+export&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Does it simply exports all visible elements on plan view?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It exports exactly what you see in the view. You can set up the view to export what you want. This includes annotation and also sections:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2011/08/section-view-geometry.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2011/08/section-view-geometry.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. I would like to create my own Plan View export, for example to SVG or some other XML based format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can look at my simplified 2D BIM room editor for a very complete example of exporting 2D to SVG:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://lmgtfy.com/?q=building+coder+room+editor" target="_blank"&gt;http://lmgtfy.com/?q=building+coder+room+editor&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For a full 3D export to JSON, you can look at what we achieved last weekend at the AEC Hackathon in New York:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 1.2;"&gt;Project description &lt;/SPAN&gt;&lt;A style="line-height: 1.2;" href="https://www.hackerleague.org/hackathons/aec-technology-hackathon-2014/hacks/three-dot-js-aec-viewer-model-exporters" target="_blank"&gt;https://www.hackerleague.org/hackathons/aec-technology-hackathon-2014/hacks/three-dot-js-aec-viewer-model-exporters&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 1.2;"&gt;Main project page &lt;/SPAN&gt;&lt;A style="line-height: 1.2;" href="https://va3c.github.io" target="_blank"&gt;https://va3c.github.io&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 1.2;"&gt;Sample viewer &lt;/SPAN&gt;&lt;A style="line-height: 1.2;" href="https://va3c.github.io/viewer" target="_blank"&gt;https://va3c.github.io/viewer&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 1.2;"&gt;va3c team &lt;/SPAN&gt;&lt;A style="line-height: 1.2;" href="https://va3c.github.io/#team" target="_blank"&gt;https://va3c.github.io/#team&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 1.2;"&gt;va3c exporter from Revit by Matt Mason and Jeremy &lt;/SPAN&gt;&lt;A style="line-height: 1.2;" href="https://github.com/va3c/RvtVa3c" target="_blank"&gt;https://github.com/va3c/RvtVa3c&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN style="line-height: 1.2;"&gt;Live blog post during the event &lt;/SPAN&gt;&lt;A style="line-height: 1.2;" href="http://thebuildingcoder.typepad.com/blog/2014/05/aec-hackathon-from-the-midst-of-the-fray.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2014/05/aec-hackathon-from-the-midst-of-the-fray.html&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We won second prize!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2014 08:50:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5043064#M76742</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-05-20T08:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186511#M76743</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt; 3. I would like to create my own Plan View export, for example to SVG or some other XML based format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt; You can look at my simplified 2D BIM room editor for a very complete example of exporting 2D to SVG:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A rel="nofollow" target="_blank" href="http://lmgtfy.com/?q=building+coder+room+editor"&gt;&amp;gt; http://lmgtfy.com/?q=building+coder+room+editor&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;Where you can see&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;on the&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;code&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;file in&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;SVG&lt;/SPAN&gt;&lt;/SPAN&gt;?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2014 07:58:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186511#M76743</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-31T07:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186539#M76744</link>
      <description>&lt;P&gt;3a. Clone the source code from GitHub:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/jeremytammik/RoomEditorApp" target="_blank"&gt;https://github.com/jeremytammik/RoomEditorApp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3b. Load the solution file in Visual Studio.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3c. Search globally for "svg".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2014 08:19:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186539#M76744</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-07-31T08:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186575#M76745</link>
      <description>&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;I do not use&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;Visual Studio&lt;/SPAN&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;would like&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;to see the code&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;example&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;as&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;&amp;lt;svg ...&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;&amp;nbsp; &amp;lt;defs ...&amp;gt; ... &amp;lt;/defs&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;...&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;&amp;lt;/svg&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2014 08:43:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186575#M76745</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-31T08:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186599#M76746</link>
      <description>&lt;P&gt;If you do not use Visual Studio, you can simply download the code and search through the text in the C# source code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I do is trivial.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All I do is populate the "d" attribute defining the data of the SVG path tag:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.w3.org/TR/SVG/paths.html#PathData" target="_blank"&gt;http://www.w3.org/TR/SVG/paths.html#PathData&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is an example of the code generating an (X, Y) tuple to append to the SVG path "d" attribute for a given 2D point:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;  /// &amp;lt;summary&amp;gt;
  /// Return a string suitable for use in an SVG 
  /// path. For index i == 0, prefix with 'M', for
  /// i == 1 with 'L', and otherwise with nothing.
  /// &amp;lt;/summary&amp;gt;
  public string SvgPath( int i )
  {
    return string.Format( "{0}{1} {2}",
      ( 0 == i ? "M" : ( 1 == i ? "L" : "" ) ),
      X, Util.SvgFlipY( Y ) );
  }&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2014 08:56:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186599#M76746</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-07-31T08:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186625#M76747</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="hps"&gt;I'm interested in&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the end result&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;in&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;xml (svg)&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;that you can use&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;in other&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;CAD&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;systems&lt;/SPAN&gt;&lt;/SPAN&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2014 09:06:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186625#M76747</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-31T09:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186629#M76748</link>
      <description>&lt;P&gt;Good luck to you!&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2014 09:08:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5186629#M76748</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-07-31T09:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5577194#M76749</link>
      <description>&lt;P&gt;Here is a new absolutely minimal sample showing how to generate an SVG representation of a room boundary and send it to an external Heroku-hosted node.js web server for display:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2015/04/sending-a-room-boundary-to-an-svg-node-web-server.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2015/04/sending-a-room-boundary-to-an-svg-node-web-server.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2015 11:12:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/5577194#M76749</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2015-04-09T11:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/9747217#M76750</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to export SVG format Revit Rooms &amp;amp; boundary , how to use your add in revit 2019&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Prakash Pisipati&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2020 05:58:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/9747217#M76750</guid>
      <dc:creator>BIAL_prakash.p</dc:creator>
      <dc:date>2020-09-15T05:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Rvit Plan View custom export (DWFx or SVG, etc.)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/9747337#M76751</link>
      <description>&lt;P&gt;Recompile for Revit 2019, install and launch the external command, just like any other command:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/about-the-author.html#2" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/about-the-author.html#2&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2020 07:27:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/rvit-plan-view-custom-export-dwfx-or-svg-etc/m-p/9747337#M76751</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2020-09-15T07:27:57Z</dc:date>
    </item>
  </channel>
</rss>

