<?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: Weird Allow Multiple Selection - Revit API 2025 in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12731984#M5714</link>
    <description>&lt;P&gt;Below is a sample code for a quick test in Revit 2025.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using Autodesk.Revit.UI.Selection;

namespace RevitAddin
{
    [Transaction(TransactionMode.Manual)]
    public class Command : IExternalCommand
    {
        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elementSet)
        {
            UIApplication uiapp = commandData.Application;

            ExternalEventHandler.Create().Raise();

            return Result.Succeeded;
        }
    }
    public class ExternalEventHandler : IExternalEventHandler
    {
        public void Execute(UIApplication uiapp)
        {
            UIDocument uidoc = uiapp.ActiveUIDocument;
            Selection selection = uidoc.Selection;
            var reference = selection.PickObject(ObjectType.Element);
        }
        public string GetName()
        {
            return this.GetType().Name;
        }
        public static ExternalEvent Create()
        {
            return ExternalEvent.Create(new ExternalEventHandler());
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 25 Apr 2024 00:08:40 GMT</pubDate>
    <dc:creator>ricaun</dc:creator>
    <dc:date>2024-04-25T00:08:40Z</dc:date>
    <item>
      <title>Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12731348#M5712</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found a strange behavior when using &lt;STRONG&gt;Selection.PickObject&lt;/STRONG&gt; inside an &lt;STRONG&gt;ExternalEventHandler&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some reason the &lt;EM&gt;&lt;STRONG&gt;Allow Multiple Selection&lt;/STRONG&gt;&lt;/EM&gt; ribbon appear and the user can select multiple elements, and my code asked for only one element.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a video how to reproduce.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FAyQpiq_6Q6M%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DAyQpiq_6Q6M&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FAyQpiq_6Q6M%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="112" scrolling="no" title="Weird Allow Multiple Selection - Revit API 2025" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This only happens in Revit 2025.&lt;/P&gt;&lt;P&gt;Does not break anything in the code, but could mislead the user to think that multiple elements is allowed in the command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 18:00:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12731348#M5712</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-04-24T18:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12731472#M5713</link>
      <description>&lt;P&gt;that is strange, i wasn't able to reproduce it using ExternalEventHandler!!!&amp;nbsp; but i am still on Revit preview release didn't yet downloaded the 2025 version. I will try downloading and see if it behaves similar to yours&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 18:54:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12731472#M5713</guid>
      <dc:creator>Moustafa_K</dc:creator>
      <dc:date>2024-04-24T18:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12731984#M5714</link>
      <description>&lt;P&gt;Below is a sample code for a quick test in Revit 2025.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using Autodesk.Revit.UI.Selection;

namespace RevitAddin
{
    [Transaction(TransactionMode.Manual)]
    public class Command : IExternalCommand
    {
        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elementSet)
        {
            UIApplication uiapp = commandData.Application;

            ExternalEventHandler.Create().Raise();

            return Result.Succeeded;
        }
    }
    public class ExternalEventHandler : IExternalEventHandler
    {
        public void Execute(UIApplication uiapp)
        {
            UIDocument uidoc = uiapp.ActiveUIDocument;
            Selection selection = uidoc.Selection;
            var reference = selection.PickObject(ObjectType.Element);
        }
        public string GetName()
        {
            return this.GetType().Name;
        }
        public static ExternalEvent Create()
        {
            return ExternalEvent.Create(new ExternalEventHandler());
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2024 00:08:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12731984#M5714</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-04-25T00:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12732666#M5715</link>
      <description>&lt;P&gt;Thank you for analysing and reporting this. I have &lt;A href="https://autodesk.slack.com/archives/C0SR6NAP8/p1714035363339399" target="_blank"&gt;passed&lt;/A&gt; it on to the development team.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2024 08:57:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12732666#M5715</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2024-04-25T08:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12735205#M5716</link>
      <description>&lt;P style="font-weight: 400;"&gt;Dear Luiz,&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;Thank you again for discovering, documenting and reporting this, and for the clear sample material.&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;Sorry to hear about this.&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;I logged the issue &lt;STRONG&gt;&lt;U&gt;REVIT-221560&lt;/U&gt;&lt;/STRONG&gt; [PickObject in ExternalEventHandler displays multiple selection ribbon in Revit 2025] with our development team for this on your behalf as it requires further exploration and possibly a modification to our software. Please make a note of this number for future reference.&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;You are welcome to request an update on the status of this issue or to provide additional information on it at any time quoting this change request number.&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;This issue is important to me. What can I do to help?&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;This issue needs to be assessed by our engineering team and prioritised against all other outstanding change requests. Any information that you can provide to influence this assessment will help. Please provide the following where possible:&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI style="font-weight: 400;"&gt;Impact on your application and/or your development.&lt;/LI&gt;
&lt;LI style="font-weight: 400;"&gt;The number of users affected.&lt;/LI&gt;
&lt;LI style="font-weight: 400;"&gt;The potential revenue impact to you.&lt;/LI&gt;
&lt;LI style="font-weight: 400;"&gt;The potential revenue impact to Autodesk.&lt;/LI&gt;
&lt;LI style="font-weight: 400;"&gt;Realistic timescale over which a fix would help you.&lt;/LI&gt;
&lt;LI style="font-weight: 400;"&gt;In the case of a request for a new feature or a feature enhancement, please also provide detailed Use cases for the workflows that this change would address.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;This information is crucial. Our engineering team has limited resources and must focus their efforts on the highest impact items. We do understand that this will cause you delays and affect your development planning, and we appreciate your cooperation and patience.&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;Best regards,&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;Jeremy&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2024 06:45:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12735205#M5716</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2024-04-26T06:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12741267#M5717</link>
      <description>&lt;P&gt;Hello Jerem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for sending the issue to the Revit Team.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/824630"&gt;@jeremy_tammik&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;This issue is important to me. What can I do to help?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes, the issue affects all the plugins that use PickObject and modeless window (ExternalEventHandler).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue is just a UI that should not be there, the user could think that is a feature but is not. Because Revit 2024 does not have this problem and was introduced in Revit 2025, including a fix in the next Hotpot would be ideal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The extra menu 'Allow Multiple Selection' in that situation does nothing, does not break the plugin/Revit, and does not add any functionality.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just make the menu hide when is a single-element selection.&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 15:04:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12741267#M5717</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-04-29T15:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12744372#M5718</link>
      <description>&lt;P&gt;By the way if you use Face, Edge, Point and Link, the &lt;STRONG&gt;Allow Multiple Selection&lt;/STRONG&gt; show as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested using the &lt;STRONG&gt;RevitLookup&lt;/STRONG&gt; in version 2025.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RevitLookup - Allow Multiple Selection - 2024-04-30 14-58-17.gif" style="width: 960px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1356734i51E92B6C1D0A8E09/image-size/large?v=v2&amp;amp;px=999" role="button" title="RevitLookup - Allow Multiple Selection - 2024-04-30 14-58-17.gif" alt="RevitLookup - Allow Multiple Selection - 2024-04-30 14-58-17.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 18:06:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/12744372#M5718</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-04-30T18:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/13206346#M5719</link>
      <description>&lt;P&gt;Glad I came across this post as I was going to submit a post about why I was seeing it being handled two different ways, but I will just tack on here.&lt;BR /&gt;&lt;BR /&gt;And yes, I am in the latest version 2025.4.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would also like to add here that there is a different experience when using it directly from a IExternalCommand vs IExternalEventHandler.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ExternalCommand: (Old way I'd expect)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sean_Page_0-1733955478748.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1444769i06D464F5A17C98F9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sean_Page_0-1733955478748.png" alt="Sean_Page_0-1733955478748.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ExternalEvent: Aligns UI / Options as Luiz notes:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sean_Page_1-1733955538882.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1444771i340DE02188BA59A3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sean_Page_1-1733955538882.png" alt="Sean_Page_1-1733955538882.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Personally, I MUCH prefer the UI of the IExternalEventHandler option, and I am looking for selecting multiple, but it's much cleaner.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 22:21:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/13206346#M5719</guid>
      <dc:creator>Sean_Page</dc:creator>
      <dc:date>2024-12-11T22:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/13206362#M5720</link>
      <description>&lt;P&gt;So, I am not sure if maybe it's because you don't have a filter / prompt specified, but I don't actually see this behavior with PickObject.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is in the command:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sean_Page_2-1733956058330.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1444775i7D2A2E0F12F480AD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sean_Page_2-1733956058330.png" alt="Sean_Page_2-1733956058330.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is being ran within an IExternalEventhandler as a switched method on Execute().&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;private void AssignParameters(UIDocument uiDoc, Document Doc)
{
    try
    {
        Document doc = uiDoc.Document;
        ISelectionFilter filter = new SelectionFilters.SpaceSelectionFilter([SpaceCategory]);
        Selection picked = uiDoc.Selection;
        
        //Does not provide the Multiple selection Option as expected.
        Reference single = picked.PickObject(ObjectType.Element, filter, "Select Rooms");
        
        //Does provide Multiple Option as expected
        IList&amp;lt;Reference&amp;gt; selections = picked.PickObjects(ObjectType.Element, filter, "Select Rooms");
    }
    catch(Exception ex)
    {
        if(ex.GetType() == typeof(Autodesk.Revit.Exceptions.OperationCanceledException))
        {
            return;
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 22:31:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/13206362#M5720</guid>
      <dc:creator>Sean_Page</dc:creator>
      <dc:date>2024-12-11T22:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/13206392#M5721</link>
      <description>&lt;P&gt;The issue was fixed in Revit 2025.2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Selection&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Fixed an API Issue in which method Selection.PickObject would allow multiple selection if called from a class implementing IExternalEventHandler interface.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://github.com/jeremytammik/RevitLookup/issues/226" target="_blank" rel="noopener"&gt;https://github.com/jeremytammik/RevitLookup/issues/226&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://help.autodesk.com/view/RVT/2025/ENU/?guid=RevitReleaseNotes_2025updates_2025_2_Resolved_Issues_2025_2_html" target="_blank" rel="noopener"&gt;https://help.autodesk.com/view/RVT/2025/ENU/?guid=RevitReleaseNotes_2025updates_2025_2_Resolved_Issues_2025_2_html&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 11 Dec 2024 22:49:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/13206392#M5721</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-12-11T22:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/13206408#M5722</link>
      <description>&lt;P&gt;Thanks Luiz, would still like to see consistent Ribbon UI regardless of where the PO call comes from.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 22:57:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/13206408#M5722</guid>
      <dc:creator>Sean_Page</dc:creator>
      <dc:date>2024-12-11T22:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Weird Allow Multiple Selection - Revit API 2025</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/13206411#M5723</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3064449"&gt;@Sean_Page&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Personally, I MUCH prefer the UI of the IExternalEventHandler option, and I am looking for selecting multiple, but it's much cleaner.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Agree looks much cleaner. I suppose Autodesk is moving all Option Bar to the Modify tab, there are some movement in the Revit Preview.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 23:02:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/weird-allow-multiple-selection-revit-api-2025/m-p/13206411#M5723</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-12-11T23:02:05Z</dc:date>
    </item>
  </channel>
</rss>

