<?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: Placing detail group in legend view without access to UI (Design Automation) in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12793986#M5099</link>
    <description>&lt;P&gt;Why do you need the UI to place a group? Do you have a sample code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created one but only require the Document.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using System;
using System.Linq;

namespace RevitAddin.Commands
{
    [Transaction(TransactionMode.Manual)]
    public class CommandPlaceGroup : IExternalCommand
    {
        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elementSet)
        {
            UIApplication uiapp = commandData.Application;

            Document document = uiapp.ActiveUIDocument.Document;

            PlaceGroup(document);

            return Result.Succeeded;
        }

        public void PlaceGroup(Document document)
        {
            GroupType groupType = new FilteredElementCollector(document)
                .OfClass(typeof(GroupType))
                .OfType&amp;lt;GroupType&amp;gt;()
                .FirstOrDefault();

            if (groupType is null)
            {
                Console.WriteLine("No group type found.");
                return;
            }

            Console.WriteLine(groupType.Name);

            using (Transaction transaction = new Transaction(document))
            {
                transaction.Start("Place Group");
                XYZ mypoint = new XYZ(0, 0, 0);
                document.Create.PlaceGroup(mypoint, groupType);
                transaction.Commit();
            }

        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 May 2024 20:39:15 GMT</pubDate>
    <dc:creator>ricaun</dc:creator>
    <dc:date>2024-05-23T20:39:15Z</dc:date>
    <item>
      <title>Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12792753#M5095</link>
      <description>&lt;P&gt;I am creating an application for Design Automation for Revit in which I want to place detail groups onto a legend view.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I'm not mistaken, the approach would typically be&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- change active view (&lt;A href="https://www.revitapidocs.com/2017/b6adb74b-39af-9213-c37b-f54db76b75a3.htm" target="_blank"&gt;https://www.revitapidocs.com/2017/b6adb74b-39af-9213-c37b-f54db76b75a3.htm&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;- call&amp;nbsp;PlaceGroup() (&lt;A href="https://www.revitapidocs.com/2019/586d4f2e-0985-2d0b-dbb7-ea6d2f704336.htm" target="_blank"&gt;https://www.revitapidocs.com/2019/586d4f2e-0985-2d0b-dbb7-ea6d2f704336.htm&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, because I am running on Design Automation, I don't have access to the UI and therefor I cannot set UIDocument.Activeview.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have any ideas for a workaround? Is there an alternative method for placing detail groups which takes in a View as an argument? Or are there ways to change the ActiveView in Design Automation?&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 12:30:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12792753#M5095</guid>
      <dc:creator>pieterschiettecatte</dc:creator>
      <dc:date>2024-05-23T12:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12793281#M5096</link>
      <description>&lt;P&gt;Good question. I &lt;A href="https://autodesk.slack.com/archives/C0SR6NAP8/p1716477175196449" target="_blank"&gt;asked&lt;/A&gt; the development team for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 15:14:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12793281#M5096</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2024-05-23T15:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12793326#M5097</link>
      <description>&lt;P&gt;Thanks Jeremy! The link doesn't work for me, but I assume this is an internal slack channel?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 15:27:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12793326#M5097</guid>
      <dc:creator>pieterschiettecatte</dc:creator>
      <dc:date>2024-05-23T15:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12793429#M5098</link>
      <description>&lt;P&gt;Yes, it is just for me to navigate back and forth between the public thread and the internal one.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 16:00:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12793429#M5098</guid>
      <dc:creator>jeremy_tammik</dc:creator>
      <dc:date>2024-05-23T16:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12793986#M5099</link>
      <description>&lt;P&gt;Why do you need the UI to place a group? Do you have a sample code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created one but only require the Document.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using System;
using System.Linq;

namespace RevitAddin.Commands
{
    [Transaction(TransactionMode.Manual)]
    public class CommandPlaceGroup : IExternalCommand
    {
        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elementSet)
        {
            UIApplication uiapp = commandData.Application;

            Document document = uiapp.ActiveUIDocument.Document;

            PlaceGroup(document);

            return Result.Succeeded;
        }

        public void PlaceGroup(Document document)
        {
            GroupType groupType = new FilteredElementCollector(document)
                .OfClass(typeof(GroupType))
                .OfType&amp;lt;GroupType&amp;gt;()
                .FirstOrDefault();

            if (groupType is null)
            {
                Console.WriteLine("No group type found.");
                return;
            }

            Console.WriteLine(groupType.Name);

            using (Transaction transaction = new Transaction(document))
            {
                transaction.Start("Place Group");
                XYZ mypoint = new XYZ(0, 0, 0);
                document.Create.PlaceGroup(mypoint, groupType);
                transaction.Commit();
            }

        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 20:39:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12793986#M5099</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-05-23T20:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12794030#M5100</link>
      <description>&lt;P&gt;I believe your code would work for model groups but not for detail groups. Unless I'm missing something.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 21:09:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12794030#M5100</guid>
      <dc:creator>pieterschiettecatte</dc:creator>
      <dc:date>2024-05-23T21:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12794033#M5101</link>
      <description>&lt;P&gt;Hmmm, the &lt;STRONG&gt;PlaceGroup&lt;/STRONG&gt; place the group detail in the activated view.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looks like you need to use the&lt;STRONG&gt; uidoc.RequestViewChange(view)&lt;/STRONG&gt; to select where the group is added.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The method &lt;STRONG&gt;PlaceGroup&lt;/STRONG&gt; works in DA?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an idea to place the group detail in the view you want. Gonna test!&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 21:11:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12794033#M5101</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-05-23T21:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12794051#M5102</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3646272"&gt;@pieterschiettecatte&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I believe your code would work for model groups but not for detail groups. Unless I'm missing something.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The code works fine with Detail Group, the code below select only the category for &lt;STRONG&gt;DetailGroups&lt;/STRONG&gt;.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;GroupType groupType = new FilteredElementCollector(document)
    .OfClass(typeof(GroupType))
    .OfType&amp;lt;GroupType&amp;gt;()
    .Where(e=&amp;gt;e.Category.Id == new ElementId(BuiltInCategory.OST_IOSDetailGroups))
    .FirstOrDefault();&lt;/LI-CODE&gt;&lt;P&gt;Does not see a way to put the detail group in a view you want, but you can copy between views.&lt;/P&gt;&lt;P&gt;Works fine in Revit just need to check if the method &lt;STRONG&gt;PlaceGroup&lt;/STRONG&gt; works in DA, my guess is the group gonna be added in a random/valid view.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 21:34:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12794051#M5102</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-05-23T21:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12795285#M5103</link>
      <description>&lt;P&gt;After some test and some promising result to change the View of the group using copy the detail to the new view and delete the old one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public static Group ChangeView(Group group, View newView)
{
    // Model Groups do not have an owner view
    if (group.OwnerViewId == ElementId.InvalidElementId)
        return group;

    // Group is already in the correct view
    if (group.OwnerViewId == newView.Id)
        return group;

    var document = group.Document;
    var view = document.GetElement(group.OwnerViewId) as View;

    var elementsToCopy = new [] { group.Id };

    var options = new CopyPasteOptions();

    var elements = ElementTransformUtils.CopyElements(view, elementsToCopy, newView, Transform.Identity, options);
    document.Delete(elementsToCopy);

    var newGroup = elements.Select(e =&amp;gt; document.GetElement(e)).OfType&amp;lt;Group&amp;gt;().FirstOrDefault();
    return newGroup;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately the &lt;STRONG&gt;PlaceGroup&lt;/STRONG&gt; put the detail group in an invalid view (&lt;EM&gt;&lt;STRONG&gt;ElementId.InvalidElementId&lt;/STRONG&gt;&lt;/EM&gt;) when you open de file using &lt;A href="https://www.revitapidocs.com/2015/14826965-b83e-110c-1466-cc7667def9c8.htm" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;Application.OpenDocumentFile&lt;/STRONG&gt;&lt;/A&gt;, probably because that document don't have a &lt;STRONG&gt;ActiveView&lt;/STRONG&gt;. The same problem happen in &lt;STRONG&gt;Design Automation for Revit&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a video testing that in Revit for Desktop and Revit for Design Automation.&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%2FoSCvXGx4SaM%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DoSCvXGx4SaM&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FoSCvXGx4SaM%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="112" scrolling="no" title="Revit API Forum - RevitTest PlaceGroupDetail in View using Design Automation" 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;Looks like &lt;STRONG&gt;PlaceGroup&lt;/STRONG&gt; does not work without UI when using Detail Group.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 11:45:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12795285#M5103</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-05-24T11:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12795315#M5104</link>
      <description>&lt;P&gt;Wow Ricaun, huge thanks for spending so much time looking into this!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using the copy/paste approach is a great workaround! I am running my application on a custom template, so I can simply include a view that holds a 'placeholder' detail group in my template. From my application, I can then copy paste the placeholder detail group into my desired view (and then change the type).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If someone would need to do this on a generic Revit file, you could search the project for a placed detail groups and copy that, but you'll be in trouble if the file does not have any placed detail groups. So it would still be nice to have an api call to place detail groups in a given view. I created a Revit idea for it here:&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/revit-ideas/api-place-detail-group-in-view/idi-p/12795311" target="_blank"&gt;https://forums.autodesk.com/t5/revit-ideas/api-place-detail-group-in-view/idi-p/12795311&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 11:59:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12795315#M5104</guid>
      <dc:creator>pieterschiettecatte</dc:creator>
      <dc:date>2024-05-24T11:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12795399#M5105</link>
      <description>&lt;P&gt;Yes, if you have a Detail Group inside your document and copy that would work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was testing exactly that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public static Group CreateGroupDetail(GroupType groupType, View view, XYZ location)
{
    var document = groupType.Document;

    Group groupBase = new FilteredElementCollector(document)
        .WhereElementIsNotElementType()
        .OfCategory(BuiltInCategory.OST_IOSDetailGroups)
        .OfClass(typeof(Group))
        .OfType&amp;lt;Group&amp;gt;()
        .FirstOrDefault();

    if (groupBase is null)
    {
        throw new Exception("No group found.");
    }

    Console.WriteLine($"CreateGroupDetail using {groupBase.GroupType.Name} [{groupBase.GroupType.Id}] to {groupType.Name} [{groupType.Id}]");

    var groupView = document.GetElement(groupBase.OwnerViewId) as View;

    var elementsToCopy = new[] { groupBase.Id };
    var options = new CopyPasteOptions();
    var elements = ElementTransformUtils.CopyElements(groupView, elementsToCopy, view, Transform.Identity, options);

    var newGroup = elements.Select(e =&amp;gt; document.GetElement(e)).OfType&amp;lt;Group&amp;gt;().FirstOrDefault();
    newGroup.ChangeTypeId(groupType.Id);

    var locationPoint = newGroup.Location as LocationPoint;
    var oldLocation = locationPoint.Point;
    locationPoint.Point = location;

    Console.WriteLine($"CreateGroupDetail location {oldLocation} to {locationPoint.Point}");

    return newGroup;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Work great but you need to have a Detail Group inside the document in some view, a placeholder like you mention.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe would be possible to copy a view from another document with a detail inside if the main document does not have a Detail Group instance. Would be fun to experiment and useful to fix others Revit API limitations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;PS: Should be a good idea to edit the &lt;STRONG&gt;Revit idea &lt;/STRONG&gt;and add the link about this post, so people could find a workaround solution and reference about the issue.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 12:38:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12795399#M5105</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-05-24T12:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12795430#M5106</link>
      <description>It seems we cannot edit ideas after posting them (which kinda makes sense), so I added it as a comment. Again huge thanks for looking into this. Much appreciated.</description>
      <pubDate>Fri, 24 May 2024 12:50:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12795430#M5106</guid>
      <dc:creator>pieterschiettecatte</dc:creator>
      <dc:date>2024-05-24T12:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Placing detail group in legend view without access to UI (Design Automation)</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12796425#M5107</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3646272"&gt;@pieterschiettecatte&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;It seems we cannot edit ideas after posting them (which kinda makes sense), so I added it as a comment.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Now thinking makes sense, you could get many votes and than change the idea &lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&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/3646272"&gt;@pieterschiettecatte&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Again huge thanks for looking into this. Much appreciated.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;No worries, was fun to looking into that. &lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created another video with the unit test project for the &lt;STRONG&gt;PlaceGroup&lt;/STRONG&gt; problem.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;A href="https://github.com/ricaun-io/RevitTestPlaceGroup.Tests" target="_blank"&gt;https://github.com/ricaun-io/RevitTestPlaceGroup.Tests&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&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%2FVhaFv_UaHGU%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DVhaFv_UaHGU&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FVhaFv_UaHGU%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="112" scrolling="no" title="Create PlaceGroupDetail Unit Test for Revit - Revit API" 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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 19:59:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/placing-detail-group-in-legend-view-without-access-to-ui-design/m-p/12796425#M5107</guid>
      <dc:creator>ricaun</dc:creator>
      <dc:date>2024-05-24T19:59:05Z</dc:date>
    </item>
  </channel>
</rss>

