<?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: Create Columns from Imported CAD in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10194003#M27264</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ColumnsRotation.PNG" style="width: 526px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/899495i6C9277814EABAE33/image-size/large?v=v2&amp;amp;px=999" role="button" title="ColumnsRotation.PNG" alt="ColumnsRotation.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I managed to place them but as you see I have a problem with the rotation to how can I fix it?&lt;/P&gt;</description>
    <pubDate>Sun, 28 Mar 2021 19:00:22 GMT</pubDate>
    <dc:creator>hossam.amer666</dc:creator>
    <dc:date>2021-03-28T19:00:22Z</dc:date>
    <item>
      <title>Create Columns from Imported CAD</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10179267#M27258</link>
      <description>&lt;P&gt;Hello guys,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to make an adding that could automatically create columns from imported cad file so my plan is to filter the elements from imported cad by layer name and I managed to get a list of GeometryObject which I cast to a list of polyLines then I got also the center point of each polyLine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now my question is,&lt;/P&gt;&lt;P&gt;Using&amp;nbsp;doc.Create.NewFamilyInstance(Location, symbol, level, structural type) function, How can I use the list of polylines I have to create FamilySymbols by the dimensions of unique values of polylines and pass it to to the function?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another question, Do I need to use foreach loop to send the list of points I have point by point or there is another way ?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 13:11:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10179267#M27258</guid>
      <dc:creator>hossam.amer666</dc:creator>
      <dc:date>2021-03-23T13:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Create Columns from Imported CAD</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10179519#M27259</link>
      <description>&lt;P&gt;For placing family instances, please look at the PlaceInstances add-in:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/2013/10/text-file-driven-automatic-placement-of-family-instances.html" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/2013/10/text-file-driven-automatic-placement-of-family-instances.html&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/2017/11/migrating-placeinstances-to-revit-2018.html" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/2017/11/migrating-placeinstances-to-revit-2018.html&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please note that NewFamilyInstance has many overloads, and you need to use the appropriate one depending on the family you are placing:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2011/01/newfamilyinstance-overloads.html" target="_blank"&gt;NewFamilyInstance Overloads&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2011/06/placing-a-line-based-detail-item-instance.html" target="_blank"&gt;Placing a Line Based Detail Item Instance&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2013/02/whats-new-in-the-revit-2012-api.html" target="_blank"&gt;What's New in the Revit 2012 API&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looping over the points one by one is normally fine for placing instances.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just ensure you use one single transaction, and not a separate transaction for each instance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 14:13:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10179519#M27259</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2021-03-23T14:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: Create Columns from Imported CAD</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10180364#M27260</link>
      <description>&lt;P&gt;It's a great honour to get a reply from you, sir. I check your blogs but I can't figure out how to use my list of polyLines to create family symbols of a rectangle column with the dimensions of polylines.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 18:45:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10180364#M27260</guid>
      <dc:creator>hossam.amer666</dc:creator>
      <dc:date>2021-03-23T18:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Create Columns from Imported CAD</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10182144#M27261</link>
      <description>&lt;P&gt;not sure if this saves some steps for you. If you already know it is a rectangle Column, then all you need is only the Width, Height, and Location, and plug these parameters into a predefined Rectangle Family file/instance. (just check if the parameters you will add value to are Type/Instance parameters.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;</description>
      <pubDate>Wed, 24 Mar 2021 10:57:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10182144#M27261</guid>
      <dc:creator>Moustafa_K</dc:creator>
      <dc:date>2021-03-24T10:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create Columns from Imported CAD</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10185775#M27262</link>
      <description>&lt;P&gt;Ok now I managed to create column types by extracting the unique values of width and height and put these types in a list of familySymbols and I already have a list of XYZ represents the center points of columns and also I have to lists of doubles one for widths and another one for heights .. How can I use this Information to place columns?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 10:53:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10185775#M27262</guid>
      <dc:creator>hossam.amer666</dc:creator>
      <dc:date>2021-03-25T10:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: Create Columns from Imported CAD</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10185849#M27263</link>
      <description>&lt;P&gt;Simply by reading the answers already provided above, my friend.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 11:23:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10185849#M27263</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2021-03-25T11:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create Columns from Imported CAD</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10194003#M27264</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ColumnsRotation.PNG" style="width: 526px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/899495i6C9277814EABAE33/image-size/large?v=v2&amp;amp;px=999" role="button" title="ColumnsRotation.PNG" alt="ColumnsRotation.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I managed to place them but as you see I have a problem with the rotation to how can I fix it?&lt;/P&gt;</description>
      <pubDate>Sun, 28 Mar 2021 19:00:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10194003#M27264</guid>
      <dc:creator>hossam.amer666</dc:creator>
      <dc:date>2021-03-28T19:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Create Columns from Imported CAD</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10194041#M27265</link>
      <description>&lt;P&gt;Search this forum for 'rotate family instance'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please always search for answers before raising them anew.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is the purpose of this forum and saves time and effort for you yourself and others.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Mar 2021 19:36:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10194041#M27265</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2021-03-28T19:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Create Columns from Imported CAD</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10194113#M27266</link>
      <description>&lt;P&gt;Of course, I have searched and tried alot before asking however thank you I will try to figure it out myself.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Mar 2021 20:34:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10194113#M27266</guid>
      <dc:creator>hossam.amer666</dc:creator>
      <dc:date>2021-03-28T20:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create Columns from Imported CAD</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10194121#M27267</link>
      <description>&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/revit-api-forum/rotation-family-instance/m-p/4942368" target="_blank"&gt;https://forums.autodesk.com/t5/revit-api-forum/rotation-family-instance/m-p/4942368&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/revit-api-forum/can-t-rotate-element-into-this-position-again/m-p/8908525" target="_blank"&gt;https://forums.autodesk.com/t5/revit-api-forum/can-t-rotate-element-into-this-position-again/m-p/8908525&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Mar 2021 20:42:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/create-columns-from-imported-cad/m-p/10194121#M27267</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2021-03-28T20:42:30Z</dc:date>
    </item>
  </channel>
</rss>

