<?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: filtering the selection set object in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/filtering-the-selection-set-object/m-p/2380184#M17278</link>
    <description>&lt;DIV id="jive-html-wrapper-div"&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;sounds like it would work&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;are you saying it didn't?&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;mark&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;DIV&gt;&amp;lt;arunurs1&amp;gt; wrote in message &lt;A&gt;&lt;BR /&gt;
  href="news:6071295@discussion.autodesk.com"&amp;gt;news:6071295@discussion.autodesk.com&lt;/A&gt;...&lt;/DIV&gt;Hi, &lt;BR /&gt;
  I have question in filtering the selection set object. What is want is, i have &lt;BR /&gt;
  a selectionset (selecton screen type) objects in that i have to filter first &lt;BR /&gt;
  line, then from that collection again i want to filter the horizontal and &lt;BR /&gt;
  vertical lines and put those two different items in different arrays? is it &lt;BR /&gt;
  possible ? i have tried a code solme thing like this, For i = 0 To ss.Count - &lt;BR /&gt;
  1 If TypeOf ss.Item(i) Is AcadLine Then Set lin = ss.Item(i) ang = lin.Angle &lt;BR /&gt;
  If ang &amp;lt; 3.25 Then &lt;B&gt;ADD TO AN ARRAY&lt;/B&gt; Else &lt;B&gt;ADD TO AN ARRAY&lt;/B&gt; End &lt;BR /&gt;
  If End If Thanks in advance. Arun&lt;/BLOCKQUOTE&gt;
&lt;/DIV&gt;</description>
    <pubDate>Thu, 13 Nov 2008 13:38:45 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-11-13T13:38:45Z</dc:date>
    <item>
      <title>filtering the selection set object</title>
      <link>https://forums.autodesk.com/t5/vba-forum/filtering-the-selection-set-object/m-p/2380183#M17277</link>
      <description>Hi, I have question in filtering the selection set object.&lt;BR /&gt;
&lt;BR /&gt;
What is want is, i have a selectionset (selecton screen type) objects in that i have to filter first line, then from that collection again i want to filter the horizontal and vertical lines and put those two different items in  different arrays? is it possible ? i have tried a code solme thing like this, &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
          For i = 0 To ss.Count - 1&lt;BR /&gt;
            If TypeOf ss.Item(i) Is AcadLine Then&lt;BR /&gt;
               Set lin = ss.Item(i)&lt;BR /&gt;
                  ang = lin.Angle&lt;BR /&gt;
                   If ang &amp;lt; 3.25 Then&lt;BR /&gt;
                      &lt;B&gt;ADD TO AN ARRAY&lt;/B&gt;&lt;BR /&gt;
                     Else&lt;BR /&gt;
                       &lt;B&gt;ADD TO AN ARRAY&lt;/B&gt;&lt;BR /&gt;
                      End If&lt;BR /&gt;
                   End If&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance.&lt;BR /&gt;
&lt;BR /&gt;
Arun</description>
      <pubDate>Thu, 13 Nov 2008 11:56:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/filtering-the-selection-set-object/m-p/2380183#M17277</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-13T11:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: filtering the selection set object</title>
      <link>https://forums.autodesk.com/t5/vba-forum/filtering-the-selection-set-object/m-p/2380184#M17278</link>
      <description>&lt;DIV id="jive-html-wrapper-div"&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;sounds like it would work&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;are you saying it didn't?&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;BR /&gt;
&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;mark&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;DIV&gt;&amp;lt;arunurs1&amp;gt; wrote in message &lt;A&gt;&lt;BR /&gt;
  href="news:6071295@discussion.autodesk.com"&amp;gt;news:6071295@discussion.autodesk.com&lt;/A&gt;...&lt;/DIV&gt;Hi, &lt;BR /&gt;
  I have question in filtering the selection set object. What is want is, i have &lt;BR /&gt;
  a selectionset (selecton screen type) objects in that i have to filter first &lt;BR /&gt;
  line, then from that collection again i want to filter the horizontal and &lt;BR /&gt;
  vertical lines and put those two different items in different arrays? is it &lt;BR /&gt;
  possible ? i have tried a code solme thing like this, For i = 0 To ss.Count - &lt;BR /&gt;
  1 If TypeOf ss.Item(i) Is AcadLine Then Set lin = ss.Item(i) ang = lin.Angle &lt;BR /&gt;
  If ang &amp;lt; 3.25 Then &lt;B&gt;ADD TO AN ARRAY&lt;/B&gt; Else &lt;B&gt;ADD TO AN ARRAY&lt;/B&gt; End &lt;BR /&gt;
  If End If Thanks in advance. Arun&lt;/BLOCKQUOTE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 13 Nov 2008 13:38:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/filtering-the-selection-set-object/m-p/2380184#M17278</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-13T13:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: filtering the selection set object</title>
      <link>https://forums.autodesk.com/t5/vba-forum/filtering-the-selection-set-object/m-p/2380185#M17279</link>
      <description>the array what i added, return nothing . so, If possible can you update the code? and reply me. Thanks in advance.</description>
      <pubDate>Fri, 14 Nov 2008 07:02:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/filtering-the-selection-set-object/m-p/2380185#M17279</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-14T07:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: filtering the selection set object</title>
      <link>https://forums.autodesk.com/t5/vba-forum/filtering-the-selection-set-object/m-p/2380186#M17280</link>
      <description>i got the answer, it is working fine now, thnx MP</description>
      <pubDate>Fri, 14 Nov 2008 11:23:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/filtering-the-selection-set-object/m-p/2380186#M17280</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-11-14T11:23:18Z</dc:date>
    </item>
  </channel>
</rss>

