<?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: Delete all solid hatches in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694567#M346421</link>
    <description>&lt;P&gt;It works seamlessly! Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 17 Nov 2016 21:36:39 GMT</pubDate>
    <dc:creator>owitzki</dc:creator>
    <dc:date>2016-11-17T21:36:39Z</dc:date>
    <item>
      <title>Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5290951#M346404</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to&amp;nbsp;be able to go&amp;nbsp;into a drawing and delete all solid hatches from all layers.&amp;nbsp; Is this possible?&amp;nbsp; Thank you kindly. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kameron&lt;/P&gt;</description>
      <pubDate>Mon, 22 Sep 2014 22:46:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5290951#M346404</guid>
      <dc:creator>kameron1967</dc:creator>
      <dc:date>2014-09-22T22:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5290971#M346405</link>
      <description>&lt;P&gt;The following will delete all solid hatches from all layouts and from within blocks &amp;amp; nested blocks (nested to any level):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE style="max-height: 500px; white-space: pre; border: 1px solid #417394; overflow: auto; background: #f2f6f8; color: #222; padding: 3px; line-height: 120%;"&gt;(defun c:delsolhat ( / d )
    (vlax-for b (vla-get-blocks (setq d (vla-get-activedocument (vlax-get-acad-object))))
        (if (= :vlax-false (vla-get-isxref b))
            (vlax-for o b
                (if (and (= "AcDbHatch" (vla-get-objectname o))
                         (= "SOLID" (strcase (vla-get-patternname o)))
                         (vlax-write-enabled-p o)
                    )
                    (vla-delete o)
                )
            )
        )
    )
    (vla-regen d acallviewports)
    (princ)
)
(vl-load-com) (princ)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Sep 2014 22:59:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5290971#M346405</guid>
      <dc:creator>Lee_Mac</dc:creator>
      <dc:date>2014-09-22T22:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5290979#M346406</link>
      <description>&lt;P&gt;Alternatively, for primary hatches only (in all layouts):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE style="max-height: 500px; white-space: pre; border: 1px solid #417394; overflow: auto; background: #f2f6f8; color: #222; padding: 3px; line-height: 120%;"&gt;(defun c:delsolhat ( / i s )
    (if (setq s (ssget "_X" '((0 . "HATCH") (2 . "SOLID"))))
        (repeat (setq i (sslength s)) (entdel (ssname s (setq i (1- i)))))
    )
    (princ)
)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Sep 2014 23:01:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5290979#M346406</guid>
      <dc:creator>Lee_Mac</dc:creator>
      <dc:date>2014-09-22T23:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5291039#M346407</link>
      <description>&lt;P&gt;Awesome, Lee. I'll give them a try and will let you know. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Update:&amp;nbsp; I tried it and it did not appear to have removed the solid hatches.&amp;nbsp; I listed it and it shows solid.&amp;nbsp; My guess is that it's truly a solid, not a solid hatch.&amp;nbsp;Is it possible to update your routine to also include a solid?&amp;nbsp; Thanks again Lee!&lt;/P&gt;</description>
      <pubDate>Mon, 22 Sep 2014 23:45:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5291039#M346407</guid>
      <dc:creator>kameron1967</dc:creator>
      <dc:date>2014-09-22T23:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5292831#M346408</link>
      <description>&lt;P&gt;Lee, the solid does not have z dimensions.&amp;nbsp; I think it was converted from other 3D software.&amp;nbsp; Anyways, I was able to do a quick selection, but then I'd have to specify its exact layer in order to delete them and there are at least 20 layers that have these 3D solid acting as hatches.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you sir.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2014 15:21:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5292831#M346408</guid>
      <dc:creator>kameron1967</dc:creator>
      <dc:date>2014-09-23T15:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5293071#M346409</link>
      <description>&lt;DIV style="margin: 10px; border: 1px solid #ffcc00; padding: 0.5em; background-color: #ffffcc;"&gt;&lt;DIV style="color: #666; margin-bottom: 1em; font-style: italic;"&gt;kameron1967 wrote:&lt;/DIV&gt;
&lt;P&gt;Update:&amp;nbsp; I tried it and it did not appear to have removed the solid hatches.&amp;nbsp; I listed it and it shows solid.&amp;nbsp; My guess is that it's truly a solid, not a solid hatch.&amp;nbsp;Is it possible to update your routine to also include a solid?&amp;nbsp; Thanks again Lee!&lt;/P&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To clarify: there should be nothing wrong with the posted code based on the original request. The two supplied programs will successfully remove all solid hatches from all layouts of a drawing, as described in the two posts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From what you have described, it would seem that the issue is the objects you need to delete are not hatches, but rather solids.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest using either the SSX or FILTER commands to make the appropriate selection, and then erase the active selection.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2014 16:45:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5293071#M346409</guid>
      <dc:creator>Lee_Mac</dc:creator>
      <dc:date>2014-09-23T16:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5293099#M346410</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/517221"&gt;@kameron1967&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;...&amp;nbsp;I was able to do a quick selection, but then I'd have to specify its exact layer in order to delete them ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR /&gt;I don't think that's the case.&amp;nbsp; You should be able to get into QSELECT, and&amp;nbsp;in the &lt;STRONG&gt;O&lt;SPAN style="text-decoration: underline;"&gt;b&lt;/SPAN&gt;ject type:&lt;/STRONG&gt; section, pull down the list and select the appropriate kind of Solid, and in the &lt;STRONG&gt;Operat&lt;SPAN style="text-decoration: underline;"&gt;o&lt;/SPAN&gt;r:&lt;/STRONG&gt; section, pull it down and pick &lt;STRONG&gt;Select All&lt;/STRONG&gt;.&amp;nbsp; It should find all of them regardless of Layer [or color, or....] -- hit the Delete button or type E for Erase.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Sep 2014 16:54:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5293099#M346410</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2014-09-23T16:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5293213#M346411</link>
      <description>You're absolutely right, Lee. Your nicely written routines (both) worked like a charm on solid hatches. Thank you, those would come in handy as well! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;I will do as you suggested.</description>
      <pubDate>Tue, 23 Sep 2014 17:32:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5293213#M346411</guid>
      <dc:creator>kameron1967</dc:creator>
      <dc:date>2014-09-23T17:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5293221#M346412</link>
      <description>Ken1Cooper - you're right. I was able to do a select all, so that works. Thanks. I miscommunicated about the hatching. So both you and Lee came up with the solutions. Thanks a lot gents! Kudos to you both! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Tue, 23 Sep 2014 17:37:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5293221#M346412</guid>
      <dc:creator>kameron1967</dc:creator>
      <dc:date>2014-09-23T17:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5552752#M346413</link>
      <description>&lt;PRE&gt;&lt;SPAN&gt;Hello everyone, &lt;BR /&gt;I tried using the lisp mentioned , &lt;BR /&gt;only that removes only the &lt;/SPAN&gt;hatches and solids remain , you have a solution ?&lt;BR /&gt;Mirco&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Mar 2015 09:55:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5552752#M346413</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-23T09:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5552769#M346414</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;PRE&gt;&lt;SPAN&gt;Hello everyone, &lt;BR /&gt;I tried using the lisp mentioned , &lt;BR /&gt;only that removes only the &lt;/SPAN&gt;hatches and solids remain , you have a solution ?&lt;BR /&gt;Mirco&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;PRE&gt;From&lt;BR /&gt;(= "SOLID" (strcase (vla-get-patternname o)))&lt;BR /&gt;to

(= &lt;STRONG&gt;"_SOLID"&lt;/STRONG&gt; (strcase (vla-get-patternname o)))&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But the code from this thread will Delete ALL solid hatch. &amp;nbsp;I could've sworn i replied to your psot on another Forum [ CTT ] where you're asking for solid hatch inside blocks only.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 10:16:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/5552769#M346414</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2015-03-23T10:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694227#M346415</link>
      <description>&lt;P&gt;Can you also include in this apps deleting all dimensions?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 19:17:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694227#M346415</guid>
      <dc:creator>owitzki</dc:creator>
      <dc:date>2016-11-17T19:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694265#M346416</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;PRE&gt;&lt;SPAN&gt;....that removes only the &lt;/SPAN&gt;hatches and solids remain , you have a solution ?&lt;BR /&gt;....&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, an old post....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're still out there, welcome to these Forums!&amp;nbsp; By "solids" that remain, do you mean &lt;EM&gt;3D&lt;/EM&gt; Solids, or the&amp;nbsp;2D ones made with the SOLID &lt;EM&gt;command?&lt;/EM&gt;&amp;nbsp; It would be a simple matter to add an appropriate entity type to the selection part.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 19:29:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694265#M346416</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-11-17T19:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694275#M346417</link>
      <description>&lt;P&gt;Please also add set all colors 'bylayer'?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kudos to the experts, the routine above alone helps me a lot. Even better if all dimensions be deleted &amp;amp; set all layer color bylayer! cheers!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 19:35:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694275#M346417</guid>
      <dc:creator>owitzki</dc:creator>
      <dc:date>2016-11-17T19:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694303#M346418</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4241063"&gt;@owitzki&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Can you also include in this apps deleting all dimensions?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Welcome to these Forums!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you mean to delete all Dimensions &lt;EM&gt;along with&lt;/EM&gt; all Solid Hatch patterns?&amp;nbsp; Or are you looking for something to delete all Dimensions only?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It gets a little more complicated, because&amp;nbsp;the ObjectName VLA Property [the "AcDbHatch" part in &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/569456"&gt;@Lee_Mac&lt;/a&gt;'s code] &lt;EM&gt;varies&lt;/EM&gt; among different types of Dimensions, but I believe at least they all &lt;EM&gt;end&lt;/EM&gt; with "Dimension."&amp;nbsp; If you want Dimensions along with Solid Hatches, try this modification [untested]:&lt;/P&gt;
&lt;PRE&gt;....
                (if
                  (and
                    &lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;(or&lt;/FONT&gt;&lt;/STRONG&gt;
                      &lt;FONT color="#0000ff"&gt;(and&lt;/FONT&gt; &lt;FONT color="#999999"&gt;; Solid Hatches:&lt;/FONT&gt;
                        (= "AcDbHatch" (vla-get-objectname o))
                        (= "SOLID" (strcase (vla-get-patternname o)))
                      &lt;FONT color="#0000ff"&gt;)&lt;/FONT&gt;&lt;FONT color="#999999"&gt;; and&lt;/FONT&gt;
                      &lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;(wcmatch (vla-get-objectname o) "*Dimension")&lt;/FONT&gt;&lt;/STRONG&gt;
                    &lt;FONT color="#0000ff"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color="#999999"&gt;; or&lt;/FONT&gt;
                    (vlax-write-enabled-p o)
                  )&lt;FONT color="#999999"&gt;; and&lt;/FONT&gt;
                  (vla-delete o)&lt;FONT color="#999999"&gt;; then&lt;/FONT&gt;
                )&lt;FONT color="#999999"&gt;; if&lt;/FONT&gt;
....&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Nov 2016 19:45:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694303#M346418</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-11-17T19:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694311#M346419</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4241063"&gt;@owitzki&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Please also add set all colors 'bylayer'?&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Adding a line to my previous Reply should do it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;                  )&lt;FONT color="#999999"&gt;; and
&lt;/FONT&gt;                  (vla-delete o)&lt;FONT color="#999999"&gt;; then&lt;/FONT&gt;
                  &lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;(vla-put-Color o 256)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#999999"&gt;; else&lt;/FONT&gt;
                )&lt;FONT color="#999999"&gt;; if&lt;/FONT&gt;
....&lt;/PRE&gt;</description>
      <pubDate>Thu, 17 Nov 2016 19:51:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694311#M346419</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-11-17T19:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694452#M346420</link>
      <description>&lt;P&gt;Yes please, along with solid hatch and solid entity if not too much... &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt; tnx&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 20:51:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694452#M346420</guid>
      <dc:creator>owitzki</dc:creator>
      <dc:date>2016-11-17T20:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694567#M346421</link>
      <description>&lt;P&gt;It works seamlessly! Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2016 21:36:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/6694567#M346421</guid>
      <dc:creator>owitzki</dc:creator>
      <dc:date>2016-11-17T21:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/7157026#M346422</link>
      <description>&lt;P&gt;Is it possible to modify this code, so that for example only solid hatches in White is deleted ?&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2017 10:46:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/7157026#M346422</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-16T10:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Delete all solid hatches</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/7157502#M346423</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;Is it possible to modify this code, so that for example only solid hatches in White is deleted ?&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Welcome to these Forums!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you mean such objects that are white because that is the color of the Layer they are drawn on [and their color is BYLAYER]. or those that are white for being given a color override [their color is 7]? &amp;nbsp;Either can be done pretty easily, but it makes a difference.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2017 14:10:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/delete-all-solid-hatches/m-p/7157502#M346423</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-06-16T14:10:47Z</dc:date>
    </item>
  </channel>
</rss>

