<?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>tema Re: FC - API - C# - How to get the Feature in the IFMPointListPattern en FeatureCAM Forum</title>
    <link>https://forums.autodesk.com/t5/featurecam-forum/fc-api-c-how-to-get-the-feature-in-the-ifmpointlistpattern/m-p/12655355#M7811</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;Do you have pdf file of this?&lt;/P&gt;</description>
    <pubDate>Thu, 21 Mar 2024 07:08:32 GMT</pubDate>
    <dc:creator>nguyenthinhvt95</dc:creator>
    <dc:date>2024-03-21T07:08:32Z</dc:date>
    <item>
      <title>FC - API - C# - How to get the Feature in the IFMPointListPattern</title>
      <link>https://forums.autodesk.com/t5/featurecam-forum/fc-api-c-how-to-get-the-feature-in-the-ifmpointlistpattern/m-p/10814628#M7113</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I want change the hole type (for example from simply hole to tap hole),&lt;BR /&gt;but if I found a&amp;nbsp;IFMPointListPattern instead of an IFMHole, how can I get the Feature in the list ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;private void CompareCSVlinesFeatures()&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; foreach (FMSetup setup in doc.Setups)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (setup.Enabled == true)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;setup.Activate();&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; foreach (FMFeature feature in setup.Features)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (feature.Enabled == true)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (feature is IFMHole)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //MessageBox.Show("Feature hole found: " + feature.Name); // Hole is found, all okay&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else if (feature is IFMPointListPattern)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;nbsp;IFMPointListPattern ######## How can I get the Feature of it, to change the type ???&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;}&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;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Maurizio Manzi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 14:41:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/featurecam-forum/fc-api-c-how-to-get-the-feature-in-the-ifmpointlistpattern/m-p/10814628#M7113</guid>
      <dc:creator>maurizio_manzi</dc:creator>
      <dc:date>2021-12-10T14:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: FC - API - C# - How to get the Feature in the IFMPointListPattern</title>
      <link>https://forums.autodesk.com/t5/featurecam-forum/fc-api-c-how-to-get-the-feature-in-the-ifmpointlistpattern/m-p/11490671#M7412</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4693021"&gt;@maurizio_manzi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looking at the API help file:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sergequiblier_0-1666101142071.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1128802i66DD66FA3D487488/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sergequiblier_0-1666101142071.png" alt="sergequiblier_0-1666101142071.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;______________________________________________________________&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0174DF"&gt;If my post answers your question, please click the &lt;STRONG&gt;"Accept Solution"&lt;/STRONG&gt; button. This helps everyone find answers more quickly!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 13:52:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/featurecam-forum/fc-api-c-how-to-get-the-feature-in-the-ifmpointlistpattern/m-p/11490671#M7412</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2022-10-18T13:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: FC - API - C# - How to get the Feature in the IFMPointListPattern</title>
      <link>https://forums.autodesk.com/t5/featurecam-forum/fc-api-c-how-to-get-the-feature-in-the-ifmpointlistpattern/m-p/12655355#M7811</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4762571"&gt;@serge.quiblier&lt;/a&gt;&amp;nbsp;Do you have pdf file of this?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 07:08:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/featurecam-forum/fc-api-c-how-to-get-the-feature-in-the-ifmpointlistpattern/m-p/12655355#M7811</guid>
      <dc:creator>nguyenthinhvt95</dc:creator>
      <dc:date>2024-03-21T07:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: FC - API - C# - How to get the Feature in the IFMPointListPattern</title>
      <link>https://forums.autodesk.com/t5/featurecam-forum/fc-api-c-how-to-get-the-feature-in-the-ifmpointlistpattern/m-p/12655534#M7812</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4786280"&gt;@nguyenthinhvt95&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't have a PDF version for the API.&lt;/P&gt;
&lt;P&gt;If I found one on my computer, it will be a very old version pretty outdated.&lt;/P&gt;
&lt;P&gt;The HTML online version can be accessed via&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sergequiblier_0-1711009188360.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1339875i574C702B2EAFE294/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sergequiblier_0-1711009188360.png" alt="sergequiblier_0-1711009188360.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It can be downloaded locally, but it will still be a collection of html files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 08:22:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/featurecam-forum/fc-api-c-how-to-get-the-feature-in-the-ifmpointlistpattern/m-p/12655534#M7812</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2024-03-21T08:22:44Z</dc:date>
    </item>
  </channel>
</rss>

