<?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: How do I create conduit between 2 connectors? in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7732688#M52936</link>
    <description>&lt;P&gt;Jeremy&lt;/P&gt;&lt;P&gt;Thank you for your answer.&lt;/P&gt;&lt;P&gt;Yes. I have created a conduit connector in the box. I can manually connect 2 boxes with conduit.&lt;/P&gt;&lt;P&gt;I tried conduit.create and this&amp;nbsp;method only requests coordinates as parameter. I succesfully created a conduit between two boxes but they are not connected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jan 2018 16:50:34 GMT</pubDate>
    <dc:creator>fnakayama-D34</dc:creator>
    <dc:date>2018-01-29T16:50:34Z</dc:date>
    <item>
      <title>How do I create conduit between 2 connectors?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7727929#M52933</link>
      <description>&lt;P&gt;I have conduit connectors on junction boxes families and I'd like to connect two boxes using a conduit.&lt;/P&gt;&lt;P&gt;I couldn't find any method to achieve this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 22:38:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7727929#M52933</guid>
      <dc:creator>fnakayama-D34</dc:creator>
      <dc:date>2018-01-26T22:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create conduit between 2 connectors?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7728966#M52934</link>
      <description>&lt;P&gt;Dear Fnakayama,&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;In general, Revit will automatically and happily connect everything that can be connected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of course, in order to achieve this, I assume that the boxes need to be equipped with connector elements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are they?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Furthermore, have you tested and verified that the connection you wish to achieve works as expected when you drive it manually through the user interface?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general, if a feature is not available in the Revit product manually through the user interface, then the Revit API will not provide it either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should therefore research the optimal workflow and best practices to address your task at hand manually through the user interface first.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To do so, please discuss and analyse it with an application engineer, product usage expert, or product support.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you have got that part sorted out, it is time to step into the programming environment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this clarifies.&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>Sat, 27 Jan 2018 17:20:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7728966#M52934</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-01-27T17:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create conduit between 2 connectors?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7729560#M52935</link>
      <description>&lt;P&gt;Assuming you have (or get) the connector points, substitute the XYZ below:&lt;/P&gt;
&lt;PRE&gt; Autodesk.Revit.DB.Electrical.Conduit.Create(pDoc, type.Id, new XYZ(0, 0, 0), new XYZ(10, 0, 0), level.Id);&lt;/PRE&gt;</description>
      <pubDate>Sun, 28 Jan 2018 06:19:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7729560#M52935</guid>
      <dc:creator>Dale.Bartlett</dc:creator>
      <dc:date>2018-01-28T06:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create conduit between 2 connectors?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7732688#M52936</link>
      <description>&lt;P&gt;Jeremy&lt;/P&gt;&lt;P&gt;Thank you for your answer.&lt;/P&gt;&lt;P&gt;Yes. I have created a conduit connector in the box. I can manually connect 2 boxes with conduit.&lt;/P&gt;&lt;P&gt;I tried conduit.create and this&amp;nbsp;method only requests coordinates as parameter. I succesfully created a conduit between two boxes but they are not connected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 16:50:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7732688#M52936</guid>
      <dc:creator>fnakayama-D34</dc:creator>
      <dc:date>2018-01-29T16:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create conduit between 2 connectors?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7732716#M52937</link>
      <description>&lt;P&gt;Dale&lt;/P&gt;&lt;P&gt;Thank you for your answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As I replied to Jeremy, I used this method but the conduit didn't connect to the boxes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 16:57:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7732716#M52937</guid>
      <dc:creator>fnakayama-D34</dc:creator>
      <dc:date>2018-01-29T16:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create conduit between 2 connectors?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7733794#M52938</link>
      <description>&lt;P&gt;What happens if you&amp;nbsp;ask the connector on one of the boxes to connect to the connector on the other box?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does it automatically create a conduit between them?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please study this series of research articles on rolling offset creation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2014/01/final-rolling-offset-using-pipecreate.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2014/01/final-rolling-offset-using-pipecreate.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2018 22:42:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7733794#M52938</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-01-29T22:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create conduit between 2 connectors?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7790345#M52939</link>
      <description>&lt;P&gt;Jeremy Thank you very much and sorry because I took long time to reply. Yes, it worked. Thank you again.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2018 01:45:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7790345#M52939</guid>
      <dc:creator>fnakayama-D34</dc:creator>
      <dc:date>2018-02-20T01:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create conduit between 2 connectors?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7790807#M52940</link>
      <description>&lt;P&gt;Dear Fnakayama,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your update and confirmation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What was the problem? How exactly did you solve it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you provide a sample code snippet demonstrating the crucial point?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&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 Feb 2018 07:54:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7790807#M52940</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-02-20T07:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create conduit between 2 connectors?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7865065#M52941</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Added a note of this to The Building Coder as well:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2018/03/connector-neighbour-conduit-transition.html#4&amp;nbsp;" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2018/03/connector-neighbour-conduit-transition.html#4&amp;nbsp;&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>Mon, 19 Mar 2018 14:33:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-do-i-create-conduit-between-2-connectors/m-p/7865065#M52941</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2018-03-19T14:33:07Z</dc:date>
    </item>
  </channel>
</rss>

