<?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: Deleting Fill Patterns in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5295475#M75662</link>
    <description>&lt;P&gt;Dear Remy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the explanation. That makes sense.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I logged the issue &lt;STRONG&gt;REVIT-48299&lt;/STRONG&gt; [API: deleting basic fill patterns works in 2014 but fails in 2015 -- 10019483] with our development team for this on your behalf as it requires further exploration and possibly a modification to our software.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please make a note of this number for future reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&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;</description>
    <pubDate>Wed, 24 Sep 2014 14:54:54 GMT</pubDate>
    <dc:creator>jeremytammik</dc:creator>
    <dc:date>2014-09-24T14:54:54Z</dc:date>
    <item>
      <title>Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5288817#M75655</link>
      <description>&lt;P&gt;hey there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a tool which deletes fill patterns in a family. Up till Revit 2014 it worked, but now in 2015 it doesn't anymore.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It looks like the standard Fill Patterns like Solid fill, Vertical, Diagonal up, Crosshatch ect. can't be deleted anymore??&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With RevitLookup I concluded that all 'standard' fill patterns have an&amp;nbsp;ElementId which consists of less digits then 'user fill patterns'.&lt;/P&gt;&lt;P&gt;So I've made the workaround like below, but this will only bypass them. Does anybody know how I can delete these standard fill patterns in a family ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;public static void RemoveFillPatterns(Document doc)&lt;BR /&gt;{&lt;BR /&gt;List&amp;lt;FillPatternElement&amp;gt; fillp =&amp;nbsp;new FilteredElementCollector(doc).WherePasses(new ElementClassFilter(typeof(FillPatternElement))).OfType&amp;lt;FillPatternElement&amp;gt;().ToList();&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;foreach (FillPatternElement HatchPattern in fillp)&lt;BR /&gt;{&lt;BR /&gt;try&lt;BR /&gt;{&lt;BR /&gt;if (&lt;SPAN&gt;Hatch&lt;/SPAN&gt;&lt;SPAN&gt;Pattern&lt;/SPAN&gt;.Id.ToString().Length &amp;gt; 5) doc.Delete(&lt;SPAN&gt;Hatch&lt;/SPAN&gt;&lt;SPAN&gt;Pattern&lt;/SPAN&gt;.Id);&lt;BR /&gt;}&lt;BR /&gt;catch (Exception ex)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;// apperently a standard fill pattern which can't be deleted in 2015&lt;BR /&gt;&amp;nbsp; &amp;nbsp;MessageBox.Show(ex.Message);&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Sep 2014 08:45:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5288817#M75655</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-22T08:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5291121#M75656</link>
      <description>You are wrapping this in a transaction right?</description>
      <pubDate>Tue, 23 Sep 2014 00:35:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5291121#M75656</guid>
      <dc:creator>mertens3d</dc:creator>
      <dc:date>2014-09-23T00:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5291491#M75657</link>
      <description>yes, I do, otherwise I wouldn't be able to delete any fill pattern. ANd it's like I said, with this code I can delete all fill patterns in a family, except for the default standards fill patterns like Crosshatch, solid fill ect. Try this code in revit 2014, and it will work and delete all fill patterns. So it looks like something has been changed in the Revit 2015. I'm afraid this another of those 'as designed' answers, since I saw the same behavior with subcategories. Up to Revit 2014 you could delete all subcategories with the api as you could by manual delete. And in Revit 2015 some couldn't be deleted anymore by the api. So, I'm hoping in the next Revit these issues are fixed.</description>
      <pubDate>Tue, 23 Sep 2014 06:31:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5291491#M75657</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-23T06:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5292329#M75658</link>
      <description>Sorry about that. I was reading on my phone and not paying a lot of attention I thought I had a possible quick solution.</description>
      <pubDate>Tue, 23 Sep 2014 13:26:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5292329#M75658</guid>
      <dc:creator>mertens3d</dc:creator>
      <dc:date>2014-09-23T13:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5294317#M75659</link>
      <description>haha, no problemo, thanks or the suggestion anyway.</description>
      <pubDate>Wed, 24 Sep 2014 05:36:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5294317#M75659</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-24T05:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5295243#M75660</link>
      <description>&lt;P&gt;Dear Remy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How important is this to you?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can always pass this on to the development team as a wish list item.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the other hand, they have more than enough to do anyway.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you explain why this is important to you?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&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;</description>
      <pubDate>Wed, 24 Sep 2014 14:02:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5295243#M75660</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-09-24T14:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5295349#M75661</link>
      <description>&lt;P&gt;Well, this function is part of our Revit application where a user can clean up it's families and project. In order to localize the content, dutch fill patterns will be imported and we don't have the need for the english fill patterns. Up till version 2014 it worked perfectly, but in 2015 this changed for some reason. How important is it.. Well, it's not a huge showstopper, so I guess it's not that important. But then again, since it did work up till 2014 the development team already has the technology, so I guess if a development team member looks at it during a coffee break, it should be a quick fix &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2014 14:24:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5295349#M75661</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-24T14:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5295475#M75662</link>
      <description>&lt;P&gt;Dear Remy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the explanation. That makes sense.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I logged the issue &lt;STRONG&gt;REVIT-48299&lt;/STRONG&gt; [API: deleting basic fill patterns works in 2014 but fails in 2015 -- 10019483] with our development team for this on your behalf as it requires further exploration and possibly a modification to our software.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please make a note of this number for future reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&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;</description>
      <pubDate>Wed, 24 Sep 2014 14:54:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5295475#M75662</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-09-24T14:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5309363#M75663</link>
      <description>&lt;P&gt;Dear Remy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have an update on this issue for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The development team explored the issue &lt;STRONG&gt;REVIT-48299&lt;/STRONG&gt; [API: deleting basic fill patterns works in 2014 but fails in 2015 -- 10019483] and reply:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We did indeed implement a change REVIT-44131 in Revit 2015 UR4 and Revit 2015 R2 that prevents the deletion of the Solid fill pattern only. Apparently,&amp;nbsp;deleting this one is really bad, because Revit expects to be able to use it in certain situations and it cannot be reloaded once deleted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is unfortunate that this change ended up in an UR, because we did know that some add-ins actively attempted this deletion. It would of course have been much better to make this change only in a next major release when we could document the behavior and allow 3rd party developers to adjust to it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That being said, I cannot reproduce the claim that *all* built-in fill patterns cannot be deleted. I upload a family and project both with embedded macros based on the users' code which try to delete the fill patterns one at a time. The only one prevented from being deleted (out of 6 in the family, and 48 in the project) is the solid fill pattern - all the rest are still deleted as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm going to close this as "Works as Expected" since the only time the deletion seems to be prevented is indeed as we intended. Unfortunately the developers may need to issue an update to deal with this behavioral change.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this clarifies.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your understanding!&lt;/P&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;</description>
      <pubDate>Wed, 01 Oct 2014 06:49:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5309363#M75663</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-10-01T06:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5310061#M75664</link>
      <description>Thanks for clearifying. You are right, only solid fill can't be deleted &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Oct 2014 13:41:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5310061#M75664</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-01T13:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5310099#M75665</link>
      <description>&lt;P&gt;Dear Remy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am glad you see the same behaviour.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the confirmation.&lt;/P&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;</description>
      <pubDate>Wed, 01 Oct 2014 13:51:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5310099#M75665</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2014-10-01T13:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5318021#M75666</link>
      <description>&lt;P&gt;My add-In&amp;nbsp;disallows deleting the Solid pattern since&amp;nbsp;on my reading of the API docs&amp;nbsp;I could not find any way to recreate it&amp;nbsp;(short of copying it in from another project) once&amp;nbsp;deleted. &amp;nbsp;I had no idea that deleting the Solid pattern could lead to difficulties elsewhere.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hugh Adamson&lt;/P&gt;&lt;P&gt;&lt;A target="_self" href="http://www.hatchkit.com.au"&gt;www.hatchkit.com.au&lt;/A&gt;&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>Sun, 05 Oct 2014 15:30:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5318021#M75666</guid>
      <dc:creator>hugha</dc:creator>
      <dc:date>2014-10-05T15:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5318461#M75667</link>
      <description>Hi Hugh, it's like I've wrote, up till 2014 it's wasn't a problem. In 2015 the rules have been changed.</description>
      <pubDate>Mon, 06 Oct 2014 05:42:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/5318461#M75667</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-06T05:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6042792#M75668</link>
      <description>&lt;P&gt;I noe have two fill patterns in my template and I only want the Solid Fill. Somewhere along the line we have ended up with the French version of solid fill. Can't rename, can't delete no way of getting rid of a redundant fill pattern unless I&amp;nbsp;open a previous version.....Very frustrating.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2016 06:31:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6042792#M75668</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-17T06:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6063738#M75669</link>
      <description>&lt;P&gt;*bump*&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've got the same problem. Actually I have 4 different solid fills in 4 languages.&lt;/P&gt;&lt;P&gt;They probably got imported with custom families online. But I can't delete them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there maybe a way through Dynamo to delete them?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2016 14:54:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6063738#M75669</guid>
      <dc:creator>Kimtaurus</dc:creator>
      <dc:date>2016-03-01T14:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6063984#M75670</link>
      <description>&lt;P&gt;Dynamo useds the Revit API for all itss interactions with Revit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the Revit API does not enable this, Dynamo cannot do so either.&lt;/P&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;</description>
      <pubDate>Tue, 01 Mar 2016 16:46:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6063984#M75670</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-03-01T16:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6064205#M75671</link>
      <description>&lt;P&gt;Hi guys,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I added a note on the new issues you reported to &lt;U&gt;&lt;STRONG&gt;REVIT-48299&lt;/STRONG&gt;&lt;/U&gt; [API: deleting basic fill patterns works in 2014 but fails in 2015 -- 10019483] and asked the development team to take another look at it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's hope for the best.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your patience.&lt;/P&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;</description>
      <pubDate>Tue, 01 Mar 2016 18:34:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6064205#M75671</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-03-01T18:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6213639#M75672</link>
      <description>&lt;P&gt;Good morning,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please, tell me, I have a problem with deleting FillPatterns in Revit 2015. The deleting is not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will It works in Revit 2016?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2016 05:41:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6213639#M75672</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-14T05:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6213745#M75673</link>
      <description>&lt;P&gt;Please read the explanations above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are issues with the deletion of solid fill patterns.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All others should work fine.&lt;/P&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;</description>
      <pubDate>Mon, 14 Mar 2016 08:28:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6213745#M75673</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2016-03-14T08:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting Fill Patterns</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6213873#M75674</link>
      <description>&lt;P&gt;Thank you, I readed and I understand )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I delete all elements, but I can't delete SOLID FillPatternElement. Maybe that is normal?!&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2016 10:14:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/deleting-fill-patterns/m-p/6213873#M75674</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-14T10:14:36Z</dc:date>
    </item>
  </channel>
</rss>

