<?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 How to receive Intersection of Section and FamilyInstance in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8794931#M42273</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i try to get the Intersection of Section and FamilyInstance.&lt;/P&gt;
&lt;P&gt;The GeometryElement of the Family returns all Faces, even if they`re outside of the Section.&lt;/P&gt;
&lt;P&gt;Is there any predefined function to receive the Solid/BoundingBox inside the Section?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
    <pubDate>Thu, 16 May 2019 09:52:27 GMT</pubDate>
    <dc:creator>Hacklberg</dc:creator>
    <dc:date>2019-05-16T09:52:27Z</dc:date>
    <item>
      <title>How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8794931#M42273</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i try to get the Intersection of Section and FamilyInstance.&lt;/P&gt;
&lt;P&gt;The GeometryElement of the Family returns all Faces, even if they`re outside of the Section.&lt;/P&gt;
&lt;P&gt;Is there any predefined function to receive the Solid/BoundingBox inside the Section?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 09:52:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8794931#M42273</guid>
      <dc:creator>Hacklberg</dc:creator>
      <dc:date>2019-05-16T09:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8795844#M42274</link>
      <description>&lt;P&gt;It should be possible, cf.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/2011/08/section-view-geometry.html" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/2011/08/section-view-geometry.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 15:04:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8795844#M42274</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-05-16T15:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8801053#M42275</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for the link, this will work for me.&lt;/P&gt;
&lt;P&gt;I expect to get those Edges with the option.View = viewSection and the GetInstanceGeometry, but this is not the case.&lt;/P&gt;
&lt;PRE&gt;Options&amp;nbsp;&lt;SPAN&gt;option&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;Options&lt;SPAN&gt;()&lt;/SPAN&gt;;
option&lt;SPAN&gt;.&lt;/SPAN&gt;ComputeReferences&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;true&lt;/SPAN&gt;;
option&lt;SPAN&gt;.&lt;/SPAN&gt;View&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;viewSection;
 
GeometryElement&amp;nbsp;&lt;SPAN&gt;geometryElement&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;familyInstance&lt;SPAN&gt;.&lt;/SPAN&gt;get_Geometry&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;option&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;;
GeometryInstance&lt;SPAN&gt;?&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;gInst&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;geometryElement&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;First&lt;SPAN&gt;()&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;as&lt;/SPAN&gt;&amp;nbsp;GeometryInstance;
GeometryElement&amp;nbsp;&lt;SPAN&gt;gSymbol&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;gInst&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;GetInstanceGeometry&lt;SPAN&gt;()&lt;/SPAN&gt;;&lt;/PRE&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 05:34:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8801053#M42275</guid>
      <dc:creator>Hacklberg</dc:creator>
      <dc:date>2019-05-20T05:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8801065#M42276</link>
      <description>&lt;P&gt;Thank you for your answer and confirming that you solved the task and achieved your goal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the crucial point, please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it the fact that you need to specify the section view in the options, and set computeReferences to true?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does it also work with&amp;nbsp;computeReferences set to false?&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;</description>
      <pubDate>Mon, 20 May 2019 05:48:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8801065#M42276</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-05-20T05:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8802202#M42277</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for me the crucial point was the&amp;nbsp;VIEWER_BOUND_FAR_CLIPPING -&amp;nbsp;Parameter, it was was set to 2 (Clip without line).&lt;/P&gt;
&lt;P&gt;I changed it to 1 (Clip with line), now it works as expected.&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;viewSection&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;get_Parameter&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;BuiltInParameter&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;VIEWER_BOUND_FAR_CLIPPING&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Set&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;;
&lt;SPAN&gt;viewSection&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;DetailLevel&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;ViewDetailLevel&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;Fine&lt;/PRE&gt;
&lt;P&gt;To set the sectionView in the options.View is necessary.&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;geomOptions&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ComputeReferences&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;false&lt;/SPAN&gt;;
&lt;SPAN&gt;geomOptions&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IncludeNonVisibleObjects&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;false&lt;/SPAN&gt;;
&lt;SPAN&gt;geomOptions&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;View&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;viewSection&lt;/SPAN&gt;;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;It works great with ComputeReference set to false too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 14:39:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8802202#M42277</guid>
      <dc:creator>Hacklberg</dc:creator>
      <dc:date>2019-05-20T14:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8804701#M42278</link>
      <description>&lt;P&gt;Thank you for the details.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried to implement a sample demonstrating its use live and have had no success so far.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my model, the section view is cutting two walls, a door and a window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Accordingly, I am retrieving four solids (actually, four null and four non-null solids).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I thought I would be getting some curves or something for the cut geometry. Is that incorrect?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I created a repository to show what I tried so far, including my test model:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/jeremytammik/SectionCutGeo" target="_blank"&gt;https://github.com/jeremytammik/SectionCutGeo&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you check it out and possibly see what I am doing wrong?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe I just need to dig deeper into those four solids?&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;</description>
      <pubDate>Tue, 21 May 2019 13:43:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8804701#M42278</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-05-21T13:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8804845#M42279</link>
      <description>&lt;P&gt;I updated the repository, checking solid edges and fixing the sketch plane to raw model curves for them, and now I see some of the cut elements: the edges for the walls. I do not see any results for the door and window family instances, however. Do you? Am I still doing something wrong? I updated the repository with the fixes... Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 14:25:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8804845#M42279</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-05-21T14:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8804850#M42280</link>
      <description>&lt;P&gt;Sorry, don't worry... just realised I probably need to check the geometry instances as well as top-level solids...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 14:26:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8804850#M42280</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-05-21T14:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8807630#M42281</link>
      <description>&lt;P&gt;Now I am completely happy with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are some images from a sample run:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sample model 3D view:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="section_cut_geo_3d.png" style="width: 279px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/639447iB08BC41358228ED6/image-size/large?v=v2&amp;amp;px=999" role="button" title="section_cut_geo_3d.png" alt="section_cut_geo_3d.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Plan view showing section location:&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="section_cut_geo_plan.png" style="width: 403px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/639448iC1922384455182D9/image-size/large?v=v2&amp;amp;px=999" role="button" title="section_cut_geo_plan.png" alt="section_cut_geo_plan.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Cut geometry in section view:&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="section_cut_geo_cut.png" style="width: 373px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/639450iA18D8CD918B25F8C/image-size/large?v=v2&amp;amp;px=999" role="button" title="section_cut_geo_cut.png" alt="section_cut_geo_cut.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Model lines representing the cut geometry of the window family instance produced by the add-in in section view:&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="section_cut_geo_cut_geo_window.png" style="width: 361px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/639451i218857E5FDBBE2ED/image-size/large?v=v2&amp;amp;px=999" role="button" title="section_cut_geo_cut_geo_window.png" alt="section_cut_geo_cut_geo_window.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Model lines representing the cut geometry of walls, door and window isolated in 3D view:&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="section_cut_geo_cut_geo_3d.png" style="width: 216px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/639452iBE68370649477308/image-size/large?v=v2&amp;amp;px=999" role="button" title="section_cut_geo_cut_geo_3d.png" alt="section_cut_geo_cut_geo_3d.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The current source code and Visual Studio solution is in the SectionCutGeo GitHub repository:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/jeremytammik/SectionCutGeo" target="_blank"&gt;https://github.com/jeremytammik/SectionCutGeo&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'll write a blog post with more details anon&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 14:02:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8807630#M42281</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-05-22T14:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8810045#M42282</link>
      <description>&lt;P&gt;Blog post with the full description is live now:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/2019/05/retrieving-section-view-intersection-cut-geometry.html" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/2019/05/retrieving-section-view-intersection-cut-geometry.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for prompting this little exploration.&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 11:54:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/8810045#M42282</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-05-23T11:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/12157192#M42283</link>
      <description>&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I came across your blog post first which directed me here.&amp;nbsp; This looks like a very handy tool, although a&lt;SPAN&gt;dmittedly, all of the API coding in the article above goes straight over my head.&amp;nbsp; I am looking for a plugin/dynamo script that can take the outlines of things cut in section to help make a filled region.&amp;nbsp; I am currently using Revit 2023/2024. Do you have any advice on installing this addin to work for 2023/2024? I downloaded it from Github but there's no instructions for installing it once I have it. Any advice you could share would be greatly appreciated.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 15:27:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/12157192#M42283</guid>
      <dc:creator>Alex_Pendray</dc:creator>
      <dc:date>2023-08-08T15:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to receive Intersection of Section and FamilyInstance</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/12159217#M42284</link>
      <description>&lt;P&gt;Dear Blob,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry, I can't help very much further here. Glad you like it. I do too! I would love to have the time to take this utility myself and create a handy end-user tool from it, or, alternatively, integrate it into RevitLookup or somewhere similar. However, as it stands, it is just sample source code. So, the only advice I can give you on this is: keep on programming! You'll get there, if you presevere, and then you can do the job yourself. God luck and have fun!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 10:39:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-receive-intersection-of-section-and-familyinstance/m-p/12159217#M42284</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2023-08-09T10:39:00Z</dc:date>
    </item>
  </channel>
</rss>

