<?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 View.IsolateElementTemporary not isolating Element in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558642#M63015</link>
    <description>&lt;P&gt;Im trying to create a ViewPlan and isolate a Element in it, but the following code does create the ViewPlan, it just doesn't isolate the Element. Any help would be appreciated.&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;PRE&gt;               public View ByBoundingBox(
            BoundingBoxXYZ bb,
            View viewTemplate,
            ViewFamilyType viewFamilyType,
            Level level,
            string name,
            float[] offset,
            ElementId isolateElementId = null
            )
        {
            XYZ minPt = new XYZ(bb.Min.X - offset[3], bb.Min.Y - offset[2], 0);
            XYZ maxPt = new XYZ(bb.Max.X + offset[1], bb.Max.Y + offset[0], 0);

            bb.Min = minPt;
            bb.Max = maxPt;

            ViewPlan vp = ViewPlan.Create(this.UIDocument.Document, viewFamilyType.Id, level.Id);

            vp.Name = name;
            vp.CropBox = bb;
            vp.CropBoxActive = true;
            vp.ViewTemplateId = viewTemplate.Id;

            if (isolateElementId != null &amp;amp;&amp;amp; isolateElementId != ElementId.InvalidElementId)
            {
                vp.EnableTemporaryViewPropertiesMode(vp.Id);
                vp.IsolateElementTemporary(isolateElementId);
            }

            return vp;
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 13 Sep 2016 09:08:47 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-09-13T09:08:47Z</dc:date>
    <item>
      <title>View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558642#M63015</link>
      <description>&lt;P&gt;Im trying to create a ViewPlan and isolate a Element in it, but the following code does create the ViewPlan, it just doesn't isolate the Element. Any help would be appreciated.&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;PRE&gt;               public View ByBoundingBox(
            BoundingBoxXYZ bb,
            View viewTemplate,
            ViewFamilyType viewFamilyType,
            Level level,
            string name,
            float[] offset,
            ElementId isolateElementId = null
            )
        {
            XYZ minPt = new XYZ(bb.Min.X - offset[3], bb.Min.Y - offset[2], 0);
            XYZ maxPt = new XYZ(bb.Max.X + offset[1], bb.Max.Y + offset[0], 0);

            bb.Min = minPt;
            bb.Max = maxPt;

            ViewPlan vp = ViewPlan.Create(this.UIDocument.Document, viewFamilyType.Id, level.Id);

            vp.Name = name;
            vp.CropBox = bb;
            vp.CropBoxActive = true;
            vp.ViewTemplateId = viewTemplate.Id;

            if (isolateElementId != null &amp;amp;&amp;amp; isolateElementId != ElementId.InvalidElementId)
            {
                vp.EnableTemporaryViewPropertiesMode(vp.Id);
                vp.IsolateElementTemporary(isolateElementId);
            }

            return vp;
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2016 09:08:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558642#M63015</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-13T09:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558690#M63016</link>
      <description>&lt;P&gt;Hi ! I'm afraid t&lt;SPAN&gt;he IsolateElementTemporary method requires a transaction !&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Source and examples from The Building Coder&amp;nbsp;&lt;A href="http://thebuildingcoder.typepad.com/blog/2013/03/export-wall-parts-individually-to-dxf.html#5" target="_blank"&gt;HERE&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2016 09:58:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558690#M63016</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-13T09:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558692#M63017</link>
      <description>&lt;P&gt;When i view the generated view plans i do see a blue like border around the screen showing me a text "Temporary Hide/Isolate".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Added screenshots. In the first screenshot "one.png" we see the generated view. In "two.png" i selected the model group which actually shoud be isolated but it's not. In "tree.png" we see how it should look like. I did this Isolation manually, so i selected the gruop and pressed the glasses down in the window to isolate the element. But that should be done by the snippet above.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2016 10:07:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558692#M63017</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-13T10:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558693#M63018</link>
      <description>&lt;P&gt;It's wrapped in a Transaction at a higher level. So not in this method itself.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2016 10:00:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558693#M63018</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-13T10:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558713#M63019</link>
      <description>&lt;PRE&gt;ElementId isolateElementId = null&lt;/PRE&gt;&lt;P&gt;In your method arguments ? ^^'&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2016 10:12:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558713#M63019</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-13T10:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558715#M63020</link>
      <description>Sure... but i have checked if a parameter is passed an it is. So that is just the default value.</description>
      <pubDate>Tue, 13 Sep 2016 10:14:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6558715#M63020</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-13T10:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563361#M63021</link>
      <description>&lt;P&gt;So this seems to be a bug in the Revit API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i try to select a Model Group to be isolated, it does not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have brought everything back to the smallest snippet:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;            this.UIDocument = commandData.Application.ActiveUIDocument;
            this.Document = this.UIDocument.Document;

            using(Transaction tx = new Transaction(this.Document))
            {
                tx.Start("tx");

                View v = this.Document.ActiveView;
                ElementId isolateElementId = new ElementId(14758028);
                v.IsolateElementTemporary(isolateElementId);
                tx.Commit();
            }
            return Result.Succeeded&lt;/PRE&gt;&lt;P&gt;When you give a Model Group ElementId, it&amp;nbsp;does not isolate the model group. When given a plain Element ID, like of a stair, it isolates the stair as expected. When doing isolating manually, you are able to select a model group and than that model group is isolated as expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For now as a workaround i will see how far i will get with isolating the Model Group members.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So using the members of the group doesn't do it either and returns a white canvas again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            this.UIDocument = commandData.Application.ActiveUIDocument;
            this.Document = this.UIDocument.Document;

            using(Transaction tx = new Transaction(this.Document))
            {
                tx.Start("tx");

                
                ElementId isolateElementId = new ElementId(14758028);
                RevitGroup g = this.Document.GetElement(isolateElementId) as RevitGroup;
                
                View v = this.Document.ActiveView;
                v.IsolateElementsTemporary(g.GetMemberIds());
                tx.Commit();
            }

            return Result.Succeeded;
}&lt;/PRE&gt;</description>
      <pubDate>Thu, 15 Sep 2016 06:41:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563361#M63021</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-15T06:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563372#M63022</link>
      <description>&lt;P&gt;Ok, so this has to do with Model Groups and Nested Groups. IsolateElementsTeporary wont work with&amp;nbsp;GetMemberIds because of Nested Groups. Sure if you don't have nested groups it will work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a method which recursively gets elements from a model group and nested groups. After using that everything worked as expected.&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;PRE&gt;        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
        {
            this.UIDocument = commandData.Application.ActiveUIDocument;
            this.Document = this.UIDocument.Document;

            using(Transaction tx = new Transaction(this.Document))
            {
                tx.Start("tx");

                
                ElementId isolateElementId = new ElementId(14758028);
                RevitGroup g = this.Document.GetElement(isolateElementId) as RevitGroup;
                List&amp;lt;ElementId&amp;gt; elems = Uploader.GetMembersRecursive(this.Document, g);
                
                View v = this.Document.ActiveView;
                v.IsolateElementsTemporary(elems);
                tx.Commit();
            }

            return Result.Succeeded;
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This still does feel as a bug tough.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 06:48:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563372#M63022</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-15T06:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563404#M63023</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Michal,&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 for your report and please excuse the delay in responding to the issue.&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 escalated this thread to an ADN case &lt;U&gt;&lt;STRONG&gt;12169210&lt;/STRONG&gt;&lt;/U&gt; [View.IsolateElementTemporary not isolating Element] and logged the issue &lt;U&gt;&lt;STRONG&gt;REVIT-99053&lt;/STRONG&gt;&lt;/U&gt; [View.IsolateElementTemporary not isolating Element -- 12169210] 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;/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;The development team really truly need exact succinct reproducible steps in order to analyse the issue.&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;They do not have the time, patience and resources to read and analyse the entire discussion to figure out what the problem might be.&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;Also, they prefer having the API problem presented as an embedded macro, so they do not have to painfully re-create your add-in.&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;Could you therefore please produce a complete reproducible case for this including a macro that demonstrates the problem and your workaround?&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/about-the-author.html#1b" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/about-the-author.html#1b&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;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;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;/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;This issue is important to me. What can I do to help?&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;This issue needs to be assessed by our engineering team, and prioritised against all of the other outstanding change requests. Any information that you can provide to influence this assessment will help. Please provide the following where possible:&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;Impact on your application and/or your development.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The number of users affected.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The potential revenue impact to you.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;The potential revenue impact to Autodesk.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Realistic timescale over which a fix would help you.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&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;/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;This information is extremely important. Our engineering team have limited resources, and so 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;/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;Best regards,&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>Thu, 15 Sep 2016 07:16:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563404#M63023</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-09-15T07:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563414#M63024</link>
      <description>Jeremy,&lt;BR /&gt;&lt;BR /&gt;Thank you for your help by creating the issue. Just got an email of the support desk that the issue is now closed.&lt;BR /&gt;&lt;BR /&gt;"Autodesk Support CaseNo:12169210: View.IsolateElementTemporary not isolating Element is closed."</description>
      <pubDate>Thu, 15 Sep 2016 07:22:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563414#M63024</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-15T07:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563428#M63025</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Michal,&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 for your update and appreciation.&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;Yes, I just closed your ADN case &lt;U&gt;&lt;STRONG&gt;12169210&lt;/STRONG&gt;&lt;/U&gt; [View.IsolateElementTemporary not isolating Element].&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;Whether it is open or closed makes no difference whatsoever as long as we are aware of its existence and case number.&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;You can reopen, update and add any new information you wish to it at any time you like regardless simply by adding notes to this thread.&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;The status of the ADN case in no way affects the internal development issue &lt;U&gt;&lt;STRONG&gt;REVIT-99053&lt;/STRONG&gt;&lt;/U&gt; [View.IsolateElementTemporary not isolating Element -- 12169210].&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;The development team only care about the latter.&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;Best regards,&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>Thu, 15 Sep 2016 07:31:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563428#M63025</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-09-15T07:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563483#M63026</link>
      <description>&lt;P&gt;So here is a revit project demonstrating the issue with embedded macros. I have created 3 test cases. You will have to manually uncomment them because it involves isolating elements and otherwise i would isolate the other test cases.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 08:08:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563483#M63026</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-15T08:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563514#M63027</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Michal,&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 for your update and reproducible case.&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 attached it to the internal development issue REVIT-99053 [View.IsolateElementTemporary not isolating Element -- 12169210].&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 will be much appreciated&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&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;Can you please also explicitly specify the exact steps to reproduce, plus the observed versus the expected behaviour in each case?&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;Otherwise, the development team will be blindly fiddling with your code with no idea what for, what to expect, what to look for.&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;Best regards,&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>Thu, 15 Sep 2016 08:26:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563514#M63027</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-09-15T08:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563528#M63028</link>
      <description>&lt;P&gt;I added comments in the code.&lt;/P&gt;&lt;P&gt;But here goes:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;TESTCASE 1: WORKS AS EXPECTED (demonstration only, so you can see what is expected behavior)&lt;BR /&gt;Works as expected. We isolate a Element, and only that Element is shown in the View.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;TESTCASE 2: WORKS AS EXPECTED&amp;nbsp;(demonstration only, so you can see what is expected behavior)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Works as expected. We isolate a Model Group and the Model Group is only shown in the View.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;T&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;ESTCASE 3: DOES NOT WORK AS EXPECTED&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Not as Expected. We isolate a Model Group, returns a blank view. Expected is that we isolate ALL the&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Elements (including the nested group elements) in the Model Group. That is the&amp;nbsp;behavior&amp;nbsp;we see when we Isolate a Model Group manually.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;To see it manually. Select the Model Group (the lowest / last one), press the Glasses icon&amp;nbsp;underneath&amp;nbsp;in the Icons menu. And click Isolate Element. Now we see in the View&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;that everything in the model groups is isolated. That is the expected behavior. When we do it trough the API, we get a blank screen / blank View.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 08:32:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563528#M63028</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-15T08:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: View.IsolateElementTemporary not isolating Element</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563547#M63029</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Michal,&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;Brilliant, perfect, exactly what we need.&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 added your descriptions to the internal development issue &lt;U&gt;&lt;STRONG&gt;REVIT-99053&lt;/STRONG&gt;&lt;/U&gt; [View.IsolateElementTemporary not isolating Element -- 12169210].&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;Best regards,&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>Thu, 15 Sep 2016 09:03:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/view-isolateelementtemporary-not-isolating-element/m-p/6563547#M63029</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-09-15T09:03:06Z</dc:date>
    </item>
  </channel>
</rss>

