<?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: Changing an Element's Phase Created Parameter in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8810636#M42119</link>
    <description>&lt;P&gt;Thanks Jeremy,&lt;/P&gt;&lt;P&gt;I think I understand the collector but I’m unclear how to actually change the phase of the elements in my foreach loop.&lt;/P&gt;</description>
    <pubDate>Thu, 23 May 2019 15:15:35 GMT</pubDate>
    <dc:creator>62BJW</dc:creator>
    <dc:date>2019-05-23T15:15:35Z</dc:date>
    <item>
      <title>Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8808894#M42113</link>
      <description>&lt;P&gt;I'm attempting to change the Phase Created parameter of all elements to "Existing". Sounds as simple as either of the following but neither is working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;                element.get_Parameter(BuiltInParameter.PHASE_CREATED).Set(phaseCreated.Id);
                element.get_Parameter(BuiltInParameter.PHASE_CREATED).SetValueString("Existing");&lt;/PRE&gt;&lt;P&gt;I've looked at many threads including the ones below but nothing works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/revit-api-forum/setting-an-elements-phase/m-p/6224664#M15088" target="_blank"&gt;https://forums.autodesk.com/t5/revit-api-forum/setting-an-elements-phase/m-p/6224664#M15088&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/2010/09/filter-for-view-and-phase.html" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/2010/09/filter-for-view-and-phase.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help.&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>Wed, 22 May 2019 22:54:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8808894#M42113</guid>
      <dc:creator>62BJW</dc:creator>
      <dc:date>2019-05-22T22:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8809328#M42114</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Bernie,&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 query.&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;Have you tried setting an element's phase created parameter manually through the user interface and monitoring what effect that has on its parameters via the API, e.g., using RevitLookup?&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;What do you observe when doing that?&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;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 05:43:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8809328#M42114</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-05-23T05:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8809453#M42115</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3685249"&gt;@62BJW&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;To set the PhaseCreated parameter first filter for the "PhaseName" and try to set the phase to the element as mentioned in the code&lt;/P&gt;
&lt;PRE&gt; Element yourElement;
                FilteredElementCollector collector = new FilteredElementCollector(doc).OfClass(typeof(Phase));               
                var phases = from Phase phase in collector where phase.Name.Contains("&lt;STRONG&gt;Existing&lt;/STRONG&gt;") select phase;
                ElementId &lt;STRONG&gt;phaseID&lt;/STRONG&gt; = phases.First().Id;     
                
                //Set phaseId 
                yourElement.CreatedPhaseId = &lt;STRONG&gt;phaseID&lt;/STRONG&gt;;&lt;/PRE&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 07:04:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8809453#M42115</guid>
      <dc:creator>naveen.kumar.t</dc:creator>
      <dc:date>2019-05-23T07:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8810146#M42116</link>
      <description>&lt;P&gt;I can see that there is a parameter called CreatedPhaseId but its value is not consistent between files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example in one file the CreatedPhaseID value is &amp;lt;Phase&amp;nbsp; New Construction&amp;nbsp; 118390&amp;gt; and in another it's value is &amp;lt;Phase&amp;nbsp; New Construction&amp;nbsp; 109562&amp;gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 12:29:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8810146#M42116</guid>
      <dc:creator>62BJW</dc:creator>
      <dc:date>2019-05-23T12:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8810176#M42117</link>
      <description>&lt;P&gt;Thanks for the reply Naveen. Not sure I completely understand the code you provided. Won't the FilteredElementCollector get elements that are set to "Existing"? I'm looking to get all "New Construction" and set it to "Existing". I can change it around but I'm not sure what&amp;nbsp;element.CreatedPhaseId = phaseID; is attempting to do. If the collector is finding elements of a particular phase isn't phaseID set to the same phase and therefore not changing it?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 12:41:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8810176#M42117</guid>
      <dc:creator>62BJW</dc:creator>
      <dc:date>2019-05-23T12:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8810521#M42118</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Bernie,&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.&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 guess phases get created as you go along and as they are needed one by one, so therefore you will find they have different phase ids in different models.&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;That is why Naveen suggests you retrieve the desired phase from the current BIM collection of phases first, in one collector, determine its id, and use that to set the desired value on the BIM element parameters.&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;What part of this are you unclear about?&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;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 14:38:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8810521#M42118</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-05-23T14:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8810636#M42119</link>
      <description>&lt;P&gt;Thanks Jeremy,&lt;/P&gt;&lt;P&gt;I think I understand the collector but I’m unclear how to actually change the phase of the elements in my foreach loop.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 15:15:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8810636#M42119</guid>
      <dc:creator>62BJW</dc:creator>
      <dc:date>2019-05-23T15:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8812186#M42120</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3685249"&gt;@62BJW&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;1)In your project, Filter for the phase named as "Existing".(as I suggested in my previous comments)&lt;/P&gt;
&lt;P&gt;2)Get the "&lt;STRONG&gt;Existing&lt;/STRONG&gt;" phase ID(It doesn't matter even if your PhaseId changes for every project because from the phase name you are getting the ID so your ID won't go wrong)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;FilteredElementCollector collector = new FilteredElementCollector(doc).OfClass(typeof(Phase));&lt;BR /&gt;var phases = from Phase phase in collector where phase.Name.Contains("Existing") select phase;&lt;BR /&gt;ElementId existingPhaseID = phases.First().Id;&lt;/PRE&gt;
&lt;P&gt;3)using FilteredElementCollector(let's say &lt;STRONG&gt;elementslist&lt;/STRONG&gt;), collect all your elements in your project or use appropriate filters to collect particular elements present inside the project to change the&amp;nbsp;Phasecreated property.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4)use foreach loop and iterate over each element and check if the element's phase is "existing phase", if not use the below code to change the Phasecreated property&lt;/P&gt;
&lt;PRE&gt;foreach(Element e in &lt;STRONG&gt;elementsList&lt;/STRONG&gt;)
                {
                    if (e.CreatedPhaseId != existingPhaseID)
                    {
                        e.CreatedPhaseId = existingPhaseID;
                    }
                }&lt;/PRE&gt;
&lt;P&gt;where "&lt;STRONG&gt;elementslist&lt;/STRONG&gt;" is the list of elements collected using the f&lt;STRONG&gt;ilteredelementcollector.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1)I'm not sure what&amp;nbsp;element.CreatedPhaseId = phaseID???&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;ans&lt;/STRONG&gt;:This is the way to change or set your phase name to "Existing" using the phaseId of existing phase.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this helps and even if you have any doubts feel free to post your questions.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 07:04:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8812186#M42120</guid>
      <dc:creator>naveen.kumar.t</dc:creator>
      <dc:date>2019-05-24T07:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8813592#M42121</link>
      <description>&lt;P&gt;Thanks for the help Naveen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"3)using FilteredElementCollector(let's say&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;elementslist&lt;/STRONG&gt;&lt;SPAN&gt;), collect all your elements in your project or use appropriate filters to collect particular elements present inside the project to change the&amp;nbsp;Phasecreated property."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Are you saying change collector to elementlist? See attached image.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 17:24:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8813592#M42121</guid>
      <dc:creator>62BJW</dc:creator>
      <dc:date>2019-05-24T17:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8815827#M42122</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3685249"&gt;@62BJW&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Yes, what you are doing is correct but&amp;nbsp;normally I collect the elements via filteredelementcollector and add it to a LIST and I always use List elements.&lt;/P&gt;
&lt;P&gt;Lets say suppose you want ElementID instead of elements then you have to use IList&amp;lt;&amp;gt; or Icollection&amp;lt;&amp;gt; which will help you to save your elements in list as Elementids.&lt;/P&gt;</description>
      <pubDate>Mon, 27 May 2019 05:33:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8815827#M42122</guid>
      <dc:creator>naveen.kumar.t</dc:creator>
      <dc:date>2019-05-27T05:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8815838#M42123</link>
      <description>&lt;P&gt;You should always avoid converting from a filtered element collector to a List if you are not forced to do so for some reason:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2012/09/findelement-and-collector-optimisation.html" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2012/09/findelement-and-collector-optimisation.html&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/2018/11/efficient-elegant-code-and-automatic-dashboard.html" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/2018/11/efficient-elegant-code-and-automatic-dashboard.html&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is a total waste of memory and processing time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It also forces the filtered element collector to retrieve all the elements in one go, which may be extremely undesirable in a large model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/2019/02/cancelling-filtered-element-collection.html" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/2019/02/cancelling-filtered-element-collection.html&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 May 2019 05:41:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8815838#M42123</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2019-05-27T05:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8818451#M42124</link>
      <description>&lt;P&gt;Thanks Naveen and Jeremy for the replies. Sounds like I should not add element from the collector to a list in this case correct? If so I;m getting an error when I run the code. Please see attached image. Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2019 13:31:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8818451#M42124</guid>
      <dc:creator>62BJW</dc:creator>
      <dc:date>2019-05-28T13:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8819574#M42125</link>
      <description>&lt;P&gt;After experimenting a bit and stepping through the code I found that the FilteredElementCollector is collecting the phase names in the model not elements with a particular phase ("Existing"). How do I tweak it to collect the elements with "Phase Created" set to "Existing"? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;            FilteredElementCollector elementslist = new FilteredElementCollector(doc).OfClass(typeof(Phase));
            var phases = from Phase phase in elementslist where phase.Name.Contains("Existing") select phase;
            ElementId existingPhaseID = phases.First().Id;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 May 2019 20:07:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8819574#M42125</guid>
      <dc:creator>62BJW</dc:creator>
      <dc:date>2019-05-28T20:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Changing an Element's Phase Created Parameter</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8819774#M42126</link>
      <description>&lt;P&gt;Try this;&lt;/P&gt;&lt;P&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/2010/09/filter-for-view-and-phase.html" target="_blank" rel="noopener"&gt;https://thebuildingcoder.typepad.com/blog/2010/09/filter-for-view-and-phase.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And then try removing the doc.ActiveView.Id from the following;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="teal"&gt;FilteredElementCollector&lt;/SPAN&gt; collector 
&amp;nbsp; &amp;nbsp; &amp;nbsp; = &lt;SPAN class="blue"&gt;new&lt;/SPAN&gt; &lt;SPAN class="teal"&gt;FilteredElementCollector&lt;/SPAN&gt;( 
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; doc, doc.ActiveView.Id );&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2019 22:02:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/changing-an-element-s-phase-created-parameter/m-p/8819774#M42126</guid>
      <dc:creator>stever66</dc:creator>
      <dc:date>2019-05-28T22:02:29Z</dc:date>
    </item>
  </channel>
</rss>

