<?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: Move Location of Section View in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6836161#M60720</link>
    <description>&lt;P&gt;Perfect! &amp;nbsp;I forget I have some many awesome examples in the SDK. &amp;nbsp;I really need to look through them instead of always using google.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 27 Jan 2017 16:55:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-01-27T16:55:46Z</dc:date>
    <item>
      <title>Move Location of Section View</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6831743#M60715</link>
      <description>&lt;P&gt;I saw a great post n the "The Building Coder" how to create a section view to be aligned with a wall. &amp;nbsp;I'm working on a project which the wall angle will change and I need to rotate an existing&amp;nbsp;section to match the wall. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to set a curve similar to a wall? &amp;nbsp;I can't seem to find any curve or location point in Lookup. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;                LocationCurve locationCurve = wall.WallCurve;

                Transaction t = new Transaction(doc);
                t.Start("Move Wall");
                locationCurve.Curve = LinkedProfile;
                t.Commit();&lt;BR /&gt;
&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link to related post.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2012/06/create-section-view-parallel-to-wall.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2012/06/create-section-view-parallel-to-wall.html&amp;nbsp;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Danny Bentley.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2017 23:40:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6831743#M60715</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-25T23:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Move Location of Section View</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6832216#M60716</link>
      <description>&lt;P&gt;Dear Danny,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your query and appreciation of The Building Coder.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First of all, out of habit, I repeat:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For your own comfort and security, all use of transactions should be encapsulated in a `using` statement, cf.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2012/04/using-using-automagically-disposes-and-rolls-back.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2012/04/using-using-automagically-disposes-and-rolls-back.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/about-the-author.html#5.53" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/about-the-author.html#5.53&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you can indeed change the wall location curve in a manner similar to what you show.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, the code you list above is guaranteed not to work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this line, you make a &lt;EM&gt;&lt;STRONG&gt;copy&lt;/STRONG&gt;&lt;/EM&gt; of the wall location curve:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;  LocationCurve locationCurve = wall.WallCurve;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, you change something in the &lt;EM&gt;&lt;STRONG&gt;copy&lt;/STRONG&gt;&lt;/EM&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;  locationCurve.Curve = LinkedProfile;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And then you expect the wall to change?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck with that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might have better luck with&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;  wall.WallCurve = LinkedProfile;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Obvious, once pointed out, isn't it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&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;No guarantee, though, sorry to say.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Oh, and you might want to take a look at the ADN Xtra labs sample command&amp;nbsp;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;Lab2_5_SelectAndMoveWallAndAddColumns&lt;/FONT&gt;&amp;nbsp;in&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://github.com/jeremytammik/AdnRevitApiLabsXtra/blob/master/XtraCs/Labs2.cs#L837-L1102" target="_blank"&gt;https://github.com/jeremytammik/AdnRevitApiLabsXtra/blob/master/XtraCs/Labs2.cs#L837-L1102&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It moves a wall using&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;  wall.Location.Move( v )&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;by a given vector v.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Oh no, re-reading your query, I see you are trying to modify the section view, not the wall location line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No, the section view does not have a location line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is controlled differently. The Revit SDK sample&amp;nbsp;DynamicModelUpdate shows how to dynamically update a section view to follow a window placed in the model. You can adapt that to follow a wall in a similar fashion.&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>Thu, 26 Jan 2017 07:02:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6832216#M60716</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2017-01-26T07:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Move Location of Section View</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6834035#M60717</link>
      <description>&lt;P&gt;Jeremy,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, the question was regarding moving the section view. &amp;nbsp; I've been looking for the Revit SDK sample without any luck. &amp;nbsp;Could you point me to the location?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate&amp;nbsp;you clarifying the using transaction statement. &amp;nbsp;I will revise my code. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2017 19:30:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6834035#M60717</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-26T19:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Move Location of Section View</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6834043#M60718</link>
      <description>&lt;P&gt;Jeremy,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, the question was regarding moving the section view. &amp;nbsp; I've been looking for the Revit SDK sample without any luck. &amp;nbsp;Could you point me to the location?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate&amp;nbsp;you clarifying the using transaction statement. &amp;nbsp;I will revise my code. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2017 19:32:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6834043#M60718</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-26T19:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Move Location of Section View</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6834971#M60719</link>
      <description>&lt;P&gt;Dear Danny,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a quick rundown of the pointers step by step:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/a/lib/revit/2017.1/SDK/Samples/DynamicModelUpdate/CS/SectionUpdater.cs&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;public void Execute(UpdaterData data)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FamilyInstance window = doc.GetElement(m_windowId) as FamilyInstance;&lt;BR /&gt; ViewSection section = doc.GetElement(m_sectionId) as ViewSection;&lt;/P&gt;
&lt;P&gt;RejustSectionView(doc, window, section);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;internal void RejustSectionView(Document doc, Element elem, ViewSection section)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ElementTransformUtils.RotateElement(doc, m_sectionElement.Id, axis, rotateAngle);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ElementTransformUtils.MoveElement(doc, m_sectionElement.Id, translationVec);&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>Fri, 27 Jan 2017 07:23:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6834971#M60719</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2017-01-27T07:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Move Location of Section View</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6836161#M60720</link>
      <description>&lt;P&gt;Perfect! &amp;nbsp;I forget I have some many awesome examples in the SDK. &amp;nbsp;I really need to look through them instead of always using google.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2017 16:55:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6836161#M60720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-27T16:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Move Location of Section View</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6845253#M60721</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Danny,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you. Glad it helped.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I think you need to use both SDK and Internet searches, and more besides:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2017/01/virtues-of-reproduction-research-mep-settings-ontology.html#3" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2017/01/virtues-of-reproduction-research-mep-settings-ontology.html#3&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 07:12:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6845253#M60721</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2017-02-01T07:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Move Location of Section View</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6853450#M60722</link>
      <description>&lt;P&gt;Jeremy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just wanted to add my solution in case anyone else is looking to align section views and create align sections. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a short video on YouTube:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A title="Section Views Create and Align. " href="https://www.youtube.com/watch?v=gkgV2Ff6zC8&amp;amp;index=1&amp;amp;list=PLlyMZ5IcKcciQwUdE9H1m_sjdoTtXvcGY" target="_self"&gt;https://www.youtube.com/watch?v=gkgV2Ff6zC8&amp;amp;index=1&amp;amp;list=PLlyMZ5IcKcciQwUdE9H1m_sjdoTtXvcGY&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is my source code:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A title="dannysbentley Git Section" href="https://github.com/dannysbentley/Sections" target="_self"&gt;https://github.com/dannysbentley/Sections&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Danny.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 22:35:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6853450#M60722</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-03T22:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Move Location of Section View</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6854040#M60723</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Danny,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you very much for sharing your complete solution!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I am sure that will come in very handy for others as well, so I will gladly edit it into a blog post for readability and easier retrieval, if I may.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Some comments on the screen video recording:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I would suggest that you reduce your screen resolution beforehand next time you record any videos.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I cannot read the command names, or any text at all on the screen, so it is not completely obvious to me what is going on.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It probably is to anyone more involved with the issues you demo, of course, so I am sure it is fully adequate for its purpose.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;On the GitHub repository:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;A readme is always extremely helpful and important; check out the 'art of readme':&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2016/10/how-to-create-a-new-line-style.html#4" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2016/10/how-to-create-a-new-line-style.html#4&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Without a license, you are basically prohibiting every sane and honest person from making any use of your code, ever -- a sane and honest person cannot make use of third party software unless it is equipped with a license.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Why?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Because if it does not have a license now, when I start using it, the original author may come along and add one (possibly very restrictive) later on.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;A developer can only (safely) use material that has a license already attached to it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;The Importance of a License, Any Old License -- &lt;A href="http://thebuildingcoder.typepad.com/blog/2013/10/the-building-coder-samples-on-github.html#2" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2013/10/the-building-coder-samples-on-github.html#2&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;More on Licenses -- &lt;A href="http://thebuildingcoder.typepad.com/blog/2013/10/wall-compound-layer-and-other-geometry.html#2" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2013/10/wall-compound-layer-and-other-geometry.html#2&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Furthermore, the `bin` and `obj` directories are not really needed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I generally initalise all my C# .NET GitHub repositories with three settings that are all suggested by GitHub on creating a new repository:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Readme&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Visual Studio .gitignore settings&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;MIT license&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Still, for anyone who knows what he is about and trusts you to not come along with a restrictive license later on, it is perfectly adequate for its purpose, again.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Still, if you don't mind, adding the readme, license and removal of bin and obj might clarify and simplify.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I wish you a wonderful weekend!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Feb 2017 12:08:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6854040#M60723</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2017-02-04T12:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Move Location of Section View</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6860656#M60724</link>
      <description>&lt;P&gt;Cool!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for adding the readme and license to the GitHub repo!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I published a summary of this discussion on the blog for readability and future reference::&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2017/02/moving-the-section-view-location.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2017/02/moving-the-section-view-location.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>Tue, 07 Feb 2017 18:53:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/move-location-of-section-view/m-p/6860656#M60724</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2017-02-07T18:53:02Z</dc:date>
    </item>
  </channel>
</rss>

