<?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: Wall corner connection issue with two angled walls in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791436#M84569</link>
    <description>&lt;P&gt;Just with problematic walls.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Sep 2025 13:48:34 GMT</pubDate>
    <dc:creator>Charles.Piro</dc:creator>
    <dc:date>2025-09-01T13:48:34Z</dc:date>
    <item>
      <title>Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13789267#M84544</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a wall that forms an angle. Since I couldn’t achieve it directly, I tried to model it using two separate walls. However, the problem is that these two walls remain separated and do not join at the corner, as shown in the attached image.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way in the Revit API to properly join two angled walls so that they form a continuous corner without gaps?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d'écran 2025-08-29 173744.png" style="width: 457px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1566042i92B7A5EB3271C68D/image-dimensions/457x209?v=v2" width="457" height="209" role="button" title="Capture d'écran 2025-08-29 173744.png" alt="Capture d'écran 2025-08-29 173744.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 14:46:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13789267#M84544</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-02T14:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13789560#M84546</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;first question ! Do you have the same endpoint for the two walls to be joined ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Aug 2025 09:17:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13789560#M84546</guid>
      <dc:creator>Charles.Piro</dc:creator>
      <dc:date>2025-08-30T09:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13789996#M84548</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;BR /&gt;The short wall’s endpoint is the starting point of the long wall&lt;/P&gt;</description>
      <pubDate>Sat, 30 Aug 2025 22:35:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13789996#M84548</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-08-30T22:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13790228#M84549</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think , to start, you need to check if the jonction is allowed. Here is the code to check that :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;//0 is the index of the endpoint
bool IsAllowJoin1 = WallUtils.IsWallJoinAllowedAtEnd(wallElement1, 0)
bool IsAllowJoin2 = WallUtils.IsWallJoinAllowedAtEnd(wallElement2, 0)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After, if the join isn't allowed, you can permit it for both elements :&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;//0 is the index of the endpoint
WallUtils.AllowWallJoinAtEnd(wallElement1, 0);
WallUtils.AllowWallJoinAtEnd(wallElement2, 0);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the result isn't good, you can try attaching the geometries :&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;JoinGeometryUtils.JoinGeometry(doc, wallElement1, wallElement2);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Aug 2025 08:40:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13790228#M84549</guid>
      <dc:creator>Charles.Piro</dc:creator>
      <dc:date>2025-08-31T08:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791246#M84561</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I tried the solution you suggested. It does work, but the two walls are still not properly joined.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d'écran 2025-09-01 112148.png" style="width: 399px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1566480i9233F018D3851280/image-dimensions/399x358?v=v2" width="399" height="358" role="button" title="Capture d'écran 2025-09-01 112148.png" alt="Capture d'écran 2025-09-01 112148.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-right" image-alt="Capture d'écran 2025-09-01 114730.png" style="width: 524px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1566481iC2F7EEEB90931692/image-dimensions/524x328?v=v2" width="524" height="328" role="button" title="Capture d'écran 2025-09-01 114730.png" alt="Capture d'écran 2025-09-01 114730.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 10:51:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791246#M84561</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-01T10:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791253#M84563</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you for your feedback.&lt;/P&gt;
&lt;P&gt;Inside Revit UI, when you tried to join them using this function :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CharlesPiro_0-1756724152982.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1566482iD77D27F942465F09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CharlesPiro_0-1756724152982.png" alt="CharlesPiro_0-1756724152982.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what is the result ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 10:56:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791253#M84563</guid>
      <dc:creator>Charles.Piro</dc:creator>
      <dc:date>2025-09-01T10:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791281#M84564</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When I try to join the two walls with the Revit functions, they don’t join correctly — it only works if I extend the walls manually, or if I create reference planes to align their endpoints.&lt;/P&gt;&lt;P&gt;Another important point: I need to &lt;STRONG&gt;disable all wall joins&lt;/STRONG&gt; in the project, otherwise the model becomes incorrect. That’s why I created a method to &lt;STRONG&gt;allow the join only for these two specific walls&lt;/STRONG&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 11:19:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791281#M84564</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-01T11:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791322#M84565</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;can you share part of your Revit project with 2 unjoined walls ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 11:48:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791322#M84565</guid>
      <dc:creator>Charles.Piro</dc:creator>
      <dc:date>2025-09-01T11:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791419#M84566</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d'écran 2025-09-01 142416.png" style="width: 647px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1566502i240637182F687580/image-dimensions/647x469?v=v2" width="647" height="469" role="button" title="Capture d'écran 2025-09-01 142416.png" alt="Capture d'écran 2025-09-01 142416.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d'écran 2025-08-29 173744.png" style="width: 565px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1566503i824B662203E0F301/image-dimensions/565x258?v=v2" width="565" height="258" role="button" title="Capture d'écran 2025-08-29 173744.png" alt="Capture d'écran 2025-08-29 173744.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 13:25:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791419#M84566</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-01T13:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791422#M84567</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Sorry if I wasn't clear. I was thinking of an attached Revit file !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 13:30:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791422#M84567</guid>
      <dc:creator>Charles.Piro</dc:creator>
      <dc:date>2025-09-01T13:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791430#M84568</link>
      <description>&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 13:54:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791430#M84568</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-01T13:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791436#M84569</link>
      <description>&lt;P&gt;Just with problematic walls.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 13:48:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791436#M84569</guid>
      <dc:creator>Charles.Piro</dc:creator>
      <dc:date>2025-09-01T13:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791440#M84570</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 13:54:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791440#M84570</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-01T13:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791493#M84572</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;thank you for the file. The problem is your Updater whose disallow the junctions. Without it, I can join the walls manually and programmatically :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CharlesPiro_0-1756737386305.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1566511i376D225ED55D4540/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CharlesPiro_0-1756737386305.png" alt="CharlesPiro_0-1756737386305.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the best way is to exclude these elements from your Updater using a specific static list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 14:38:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791493#M84572</guid>
      <dc:creator>Charles.Piro</dc:creator>
      <dc:date>2025-09-01T14:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791500#M84573</link>
      <description>&lt;P&gt;Thank you for your explanation. I’m not sure I fully understand your solution.&lt;/P&gt;&lt;P&gt;Could you clarify what you mean by excluding these elements from the Updater using a specific static list?&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Do you mean I should create a list of walls that the Updater will ignore?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;How exactly should I implement this in my project so that only these walls can join while other walls remain unaffected?&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thanks a lot for your help&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 14:44:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791500#M84573</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-01T14:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791719#M84574</link>
      <description>&lt;P&gt;I tried your solution, but now I face a new issue: there is a height misalignment between wall1 and wall2. Here are two views: one in plan, and another one showing the vertical offset.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d'écran 2025-09-01 173056.png" style="width: 431px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1566535i41335ACD43031302/image-dimensions/431x413?v=v2" width="431" height="413" role="button" title="Capture d'écran 2025-09-01 173056.png" alt="Capture d'écran 2025-09-01 173056.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d'écran 2025-09-01 174732.png" style="width: 577px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1566536iFEA5365AC83207F6/image-dimensions/577x295?v=v2" width="577" height="295" role="button" title="Capture d'écran 2025-09-01 174732.png" alt="Capture d'écran 2025-09-01 174732.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 16:48:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13791719#M84574</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-01T16:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13792114#M84575</link>
      <description>&lt;P&gt;Use wall join command from modify tab and make it miter join&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 03:19:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13792114#M84575</guid>
      <dc:creator>kamaluddin.shaikh9</dc:creator>
      <dc:date>2025-09-02T03:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13792508#M84576</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3795963"&gt;@kamaluddin.shaikh9&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I previously solved the issue by re-enabling the wall join for the two walls specifically, but that caused a vertical offset between wall1 and wall2.&lt;/P&gt;&lt;P&gt;Now with your solution (using &lt;EM&gt;Wall Join → Miter&lt;/EM&gt;), should I apply it &lt;STRONG&gt;alone&lt;/STRONG&gt; instead of my previous solution, or should it be combined with the previous fix?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 09:07:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13792508#M84576</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-02T09:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13792997#M84579</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3795963"&gt;@kamaluddin.shaikh9&lt;/a&gt;&amp;nbsp; &amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2969170"&gt;@Charles.Piro&lt;/a&gt;&amp;nbsp;the &lt;EM&gt;Wall Join → Miter Join&lt;/EM&gt; from the Modify tab in Revit. I wanted to ask: is it possible to reproduce the exact same Miter Join behavior &lt;STRONG&gt;programmatically&lt;/STRONG&gt; using the Revit 2024 API?&lt;/P&gt;&lt;P&gt;Can this be done directly after wall creation, or do we need to implement a custom method to simulate it?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 14:45:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13792997#M84579</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-02T14:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Wall corner connection issue with two angled walls</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13793152#M84580</link>
      <description>&lt;P&gt;I tested the &lt;EM&gt;Wall Join → Miter Join&lt;/EM&gt; method &lt;SPAN&gt;manually&lt;/SPAN&gt;, but the walls are not joining correctly.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d'écran 2025-09-02 163826.png" style="width: 549px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1566871i2221A3D28F536BCA/image-dimensions/549x372?v=v2" width="549" height="372" role="button" title="Capture d'écran 2025-09-02 163826.png" alt="Capture d'écran 2025-09-02 163826.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 16:31:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/wall-corner-connection-issue-with-two-angled-walls/m-p/13793152#M84580</guid>
      <dc:creator>F_Bgdh</dc:creator>
      <dc:date>2025-09-02T16:31:42Z</dc:date>
    </item>
  </channel>
</rss>

