<?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: Cut Feature Depth in sheet metal in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/cut-feature-depth-in-sheet-metal/m-p/12725153#M166411</link>
    <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I adapted the solution for my needs.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Apr 2024 13:54:03 GMT</pubDate>
    <dc:creator>jzarczynski</dc:creator>
    <dc:date>2024-04-22T13:54:03Z</dc:date>
    <item>
      <title>Cut Feature Depth in sheet metal</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/cut-feature-depth-in-sheet-metal/m-p/12724534#M166399</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;There is no property like Depth for CutFeature Object.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In holes i colect the depth by:&lt;BR /&gt;Dim holeDepth As Double = hole.Depth&lt;BR /&gt;&lt;BR /&gt;How to check the depth of Cutfeature ? Could you please present the approach?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jzarczynski_0-1713777442221.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1352847iB6574623887418AB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jzarczynski_0-1713777442221.png" alt="jzarczynski_0-1713777442221.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My goal is to identify all blind holes in sheet metal, including the ones made by "cut" function,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 09:18:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/cut-feature-depth-in-sheet-metal/m-p/12724534#M166399</guid>
      <dc:creator>jzarczynski</dc:creator>
      <dc:date>2024-04-22T09:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Cut Feature Depth in sheet metal</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/cut-feature-depth-in-sheet-metal/m-p/12724730#M166405</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Hope this script helps you in moving forward!&lt;/P&gt;&lt;PRE&gt;	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;
	
	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oCutFeature&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;CutFeature&lt;/SPAN&gt;
	&lt;SPAN&gt;Try&lt;/SPAN&gt;
		&lt;SPAN&gt;oCutFeature&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;CommandManager&lt;/SPAN&gt;.&lt;SPAN&gt;Pick&lt;/SPAN&gt;(&lt;SPAN&gt;kPartFeatureFilter&lt;/SPAN&gt;, &lt;SPAN&gt;"Please select The Cut feature"&lt;/SPAN&gt;)
	&lt;SPAN&gt;Catch&lt;/SPAN&gt; 
		&lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Try&lt;/SPAN&gt;
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oCutFeature&lt;/SPAN&gt;.&lt;SPAN&gt;Definition&lt;/SPAN&gt;.&lt;SPAN&gt;ExtentType&lt;/SPAN&gt; = &lt;SPAN&gt;kDistanceExtent&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
	
	  &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oExtent&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DistanceExtent&lt;/SPAN&gt; = &lt;SPAN&gt;oCutFeature&lt;/SPAN&gt;.&lt;SPAN&gt;Definition&lt;/SPAN&gt;.&lt;SPAN&gt;Extent&lt;/SPAN&gt;
	  
	  &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDistance&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;ModelParameter&lt;/SPAN&gt; = &lt;SPAN&gt;oExtent&lt;/SPAN&gt;.&lt;SPAN&gt;Distance&lt;/SPAN&gt;
	  
	    &lt;SPAN&gt;MsgBox&lt;/SPAN&gt; (&lt;SPAN&gt;oDistance&lt;/SPAN&gt;.&lt;SPAN&gt;Value&lt;/SPAN&gt; * 10)
	    
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Apr 2024 10:51:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/cut-feature-depth-in-sheet-metal/m-p/12724730#M166405</guid>
      <dc:creator>BM_Ashraf</dc:creator>
      <dc:date>2024-04-22T10:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Cut Feature Depth in sheet metal</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/cut-feature-depth-in-sheet-metal/m-p/12725153#M166411</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I adapted the solution for my needs.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2024 13:54:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/cut-feature-depth-in-sheet-metal/m-p/12725153#M166411</guid>
      <dc:creator>jzarczynski</dc:creator>
      <dc:date>2024-04-22T13:54:03Z</dc:date>
    </item>
  </channel>
</rss>

