<?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: using SelectionFilter to select feature lines (Elementkante) in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11605983#M10717</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you don't know the internal name of an object (dxf-name) you can use this LISP statement:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF6600"&gt;(ssget (car (entsel)))&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;The result in the command-line then shows the properties of this object, for code 0 you'll see the name that can be used for selection filtering.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AN_ 20221208_085511.png" style="width: 563px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1149907i2BBD258171B9DF2C/image-dimensions/563x252?v=v2" width="563" height="252" role="button" title="AN_ 20221208_085511.png" alt="AN_ 20221208_085511.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
    <pubDate>Thu, 08 Dec 2022 07:55:32 GMT</pubDate>
    <dc:creator>Alfred.NESWADBA</dc:creator>
    <dc:date>2022-12-08T07:55:32Z</dc:date>
    <item>
      <title>using SelectionFilter to select feature lines (Elementkante)</title>
      <link>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11603733#M10714</link>
      <description>&lt;P&gt;IHi,&lt;/P&gt;&lt;P&gt;I have this selectionFilter in my Code&lt;/P&gt;&lt;LI-CODE lang="general"&gt;// Filter für Linien jeglicher Art
         AcDataService.TypedValue[] tvPolyline =
         {
                new AcDataService.TypedValue(-4, "&amp;lt;or"),
                new AcDataService.TypedValue(0, "ARC"),
                new AcDataService.TypedValue(0, "CIRCLE"),
                new AcDataService.TypedValue(0, "ELLIPSE"),
                new AcDataService.TypedValue(0, "LINE"),
                new AcDataService.TypedValue(0, "MLINE"),
                new AcDataService.TypedValue(0, "*POLYLINE"),
                new AcDataService.TypedValue(0, "RAY"),
                new AcDataService.TypedValue(0, "SPLINE"),
                new AcDataService.TypedValue(0, "XLINE"),
                new AcDataService.TypedValue(0, "TRACE"),
                new AcDataService.TypedValue(0, "SOLID"),
                new AcDataService.TypedValue(0, "FACE"),
                new AcDataService.TypedValue(0, "AECC_ALIGNMENT"),
                new AcDataService.TypedValue(0, "AECC_FEATURELINE"),
                new AcDataService.TypedValue(-4,"or&amp;gt;")
            };&lt;/LI-CODE&gt;&lt;P&gt;I need to add the featureLine, but it doesn't.&lt;/P&gt;&lt;P&gt;Have you got any Idea or it's impossible ?&lt;/P&gt;&lt;P&gt;Thanks for your response&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2022 12:43:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11603733#M10714</guid>
      <dc:creator>reithinger</dc:creator>
      <dc:date>2022-12-07T12:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: using SelectionFilter to select feature lines (Elementkante)</title>
      <link>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11604687#M10715</link>
      <description>Use "AECC_FEATURE_LINE"</description>
      <pubDate>Wed, 07 Dec 2022 18:37:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11604687#M10715</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2022-12-07T18:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: using SelectionFilter to select feature lines (Elementkante)</title>
      <link>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11605976#M10716</link>
      <description>&lt;P&gt;Tanks !!&lt;/P&gt;&lt;P&gt;It works.&lt;/P&gt;&lt;P&gt;How can i find the right property ?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 07:50:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11605976#M10716</guid>
      <dc:creator>reithinger</dc:creator>
      <dc:date>2022-12-08T07:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: using SelectionFilter to select feature lines (Elementkante)</title>
      <link>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11605983#M10717</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you don't know the internal name of an object (dxf-name) you can use this LISP statement:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF6600"&gt;(ssget (car (entsel)))&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;The result in the command-line then shows the properties of this object, for code 0 you'll see the name that can be used for selection filtering.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AN_ 20221208_085511.png" style="width: 563px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1149907i2BBD258171B9DF2C/image-dimensions/563x252?v=v2" width="563" height="252" role="button" title="AN_ 20221208_085511.png" alt="AN_ 20221208_085511.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 07:55:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11605983#M10717</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2022-12-08T07:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: using SelectionFilter to select feature lines (Elementkante)</title>
      <link>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11606060#M10718</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/389680"&gt;@Alfred.NESWADBA&lt;/a&gt;&amp;nbsp; a écrit&amp;nbsp;:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you don't know the internal name of an object (dxf-name) you can use this LISP statement:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier" color="#FF6600"&gt;(ssget (car (entsel)))&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;The result in the command-line then shows the properties of this object, for code 0 you'll see the name that can be used for selection filter &lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The LISP expression should be:&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(entget (car (entsel)))&lt;/LI-CODE&gt;
&lt;P&gt;Or, to directly get the DxfName:&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(cdr (assoc 0 (entget (car (entsel)))))&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 08 Dec 2022 08:42:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11606060#M10718</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2022-12-08T08:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: using SelectionFilter to select feature lines (Elementkante)</title>
      <link>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11607089#M10719</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp; ... thank you, don't know what I was thinking about while writing something like that &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 16:21:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11607089#M10719</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2022-12-08T16:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: using SelectionFilter to select feature lines (Elementkante)</title>
      <link>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11608093#M10720</link>
      <description>&lt;P&gt;Or, just use the ACAD LIST command:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Command: LI LIST&lt;BR /&gt;Select objects: 1 found&lt;/P&gt;
&lt;P&gt;Select objects:&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;AECC_FEATURE_LINE&lt;/FONT&gt; Layer: "C-TOPO-FEAT"&lt;BR /&gt;Space: Model space&lt;/P&gt;</description>
      <pubDate>Fri, 09 Dec 2022 00:31:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/using-selectionfilter-to-select-feature-lines-elementkante/m-p/11608093#M10720</guid>
      <dc:creator>Jeff_M</dc:creator>
      <dc:date>2022-12-09T00:31:00Z</dc:date>
    </item>
  </channel>
</rss>

