<?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 Polylines in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/filtering-polylines/m-p/1371985#M84460</link>
    <description>what kind of Polylines are you looking for?&lt;BR /&gt;
"Polyline" should get you 3DPolylines. "LWPolyline"&lt;BR /&gt;
might be what you want.?&lt;BR /&gt;
&lt;BR /&gt;
"technosterone" &lt;TECHNOSTERONE&gt; wrote in message &lt;BR /&gt;
news:4893723@discussion.autodesk.com...&lt;BR /&gt;
The following code filters all lines and works well.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Dim FilterType(0) As Int16&lt;BR /&gt;
&lt;BR /&gt;
Dim FilterData(0) As Object&lt;BR /&gt;
&lt;BR /&gt;
SelSet = app.ActiveDocument.SelectionSets.Add("New selection")&lt;BR /&gt;
&lt;BR /&gt;
FilterType(0) = 0&lt;BR /&gt;
&lt;BR /&gt;
FilterData(0) = "Line"&lt;BR /&gt;
&lt;BR /&gt;
SelSet.Select(Interop.Common.AcSelect.acSelectionSetAll, , , FilterType,&lt;BR /&gt;
FilterData)&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
But I failed to filter polylines  with&lt;BR /&gt;
&lt;BR /&gt;
FilterData(0) = "Polyline"&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Who can help me?&lt;/TECHNOSTERONE&gt;</description>
    <pubDate>Wed, 06 Jul 2005 14:41:27 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2005-07-06T14:41:27Z</dc:date>
    <item>
      <title>Filtering Polylines</title>
      <link>https://forums.autodesk.com/t5/net-forum/filtering-polylines/m-p/1371984#M84459</link>
      <description>The following code filters all lines and works well.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Dim FilterType(0) As Int16&lt;BR /&gt;
&lt;BR /&gt;
Dim FilterData(0) As Object&lt;BR /&gt;
&lt;BR /&gt;
SelSet = app.ActiveDocument.SelectionSets.Add("New selection")&lt;BR /&gt;
&lt;BR /&gt;
FilterType(0) = 0&lt;BR /&gt;
&lt;BR /&gt;
FilterData(0) = "Line"&lt;BR /&gt;
&lt;BR /&gt;
SelSet.Select(Interop.Common.AcSelect.acSelectionSetAll, , , FilterType, &lt;BR /&gt;
FilterData)&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
But I failed to filter polylines  with&lt;BR /&gt;
&lt;BR /&gt;
FilterData(0) = "Polyline"&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Who can help me?</description>
      <pubDate>Wed, 06 Jul 2005 14:06:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/filtering-polylines/m-p/1371984#M84459</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-07-06T14:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering Polylines</title>
      <link>https://forums.autodesk.com/t5/net-forum/filtering-polylines/m-p/1371985#M84460</link>
      <description>what kind of Polylines are you looking for?&lt;BR /&gt;
"Polyline" should get you 3DPolylines. "LWPolyline"&lt;BR /&gt;
might be what you want.?&lt;BR /&gt;
&lt;BR /&gt;
"technosterone" &lt;TECHNOSTERONE&gt; wrote in message &lt;BR /&gt;
news:4893723@discussion.autodesk.com...&lt;BR /&gt;
The following code filters all lines and works well.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Dim FilterType(0) As Int16&lt;BR /&gt;
&lt;BR /&gt;
Dim FilterData(0) As Object&lt;BR /&gt;
&lt;BR /&gt;
SelSet = app.ActiveDocument.SelectionSets.Add("New selection")&lt;BR /&gt;
&lt;BR /&gt;
FilterType(0) = 0&lt;BR /&gt;
&lt;BR /&gt;
FilterData(0) = "Line"&lt;BR /&gt;
&lt;BR /&gt;
SelSet.Select(Interop.Common.AcSelect.acSelectionSetAll, , , FilterType,&lt;BR /&gt;
FilterData)&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
But I failed to filter polylines  with&lt;BR /&gt;
&lt;BR /&gt;
FilterData(0) = "Polyline"&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Who can help me?&lt;/TECHNOSTERONE&gt;</description>
      <pubDate>Wed, 06 Jul 2005 14:41:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/filtering-polylines/m-p/1371985#M84460</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-07-06T14:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering Polylines</title>
      <link>https://forums.autodesk.com/t5/net-forum/filtering-polylines/m-p/1371986#M84461</link>
      <description>Yes, Paul, "LWPolyline" is what I needed.&lt;BR /&gt;
As far as I can see the question is wider, where can I get a full set of &lt;BR /&gt;
strings that represent Object Type?&lt;BR /&gt;
"Line", "Circle", "Arc", "LWPolyline",  ...</description>
      <pubDate>Thu, 07 Jul 2005 06:35:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/filtering-polylines/m-p/1371986#M84461</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-07-07T06:35:53Z</dc:date>
    </item>
  </channel>
</rss>

